LyteNyte Grid allows columns to be reordered when they are marked as movable using the movable
column property. Users can reposition these columns through drag and drop interactions or through
various UI components provided by LyteNyte Grid.
To reorder a column, users can click and drag the movable column's header to a new position. During the drag operation, the grid displays a drag indicator and placeholder to show the potential new position.
Pinned columns can only be moved within their own pin section. Non-pinned columns cannot be moved into pinned sections. The grid visually indicates these restrictions by changing the drag indicator color to red when attempting an invalid move.
A column group is considered movable only when all columns within the group are movable. If even a single column in the group is not movable, the entire group becomes unmovable. However, individual movable columns within that group can still be repositioned.
LyteNyte Grid provides three API methods for programmatically moving columns:
columnMoveAfter
: Moves specified columns after a target columncolumnMoveBefore
: Moves specified columns before a target columncolumnMoveToVisibleIndex
: Moves a column to a specific visible position in the gridFor detailed parameter information and usage examples, refer to our API Reference.