Columns

Column Moving

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.

Column Moving
TODO

Moving Pinned Columns

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.

Moving Pinned Restrictions
TODO

Moving Column Groups

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.

Moving Column Groups
TODO

Imperative API

LyteNyte Grid provides three API methods for programmatically moving columns:

  • columnMoveAfter: Moves specified columns after a target column
  • columnMoveBefore: Moves specified columns before a target column
  • columnMoveToVisibleIndex: Moves a column to a specific visible position in the grid

For detailed parameter information and usage examples, refer to our API Reference.