ASPxClientGridView.MoveColumn(column) Method
Moves the specified column to the specified visual position within the grid and optionally groups or ungroups the grid’s data by this column.
Declaration
MoveColumn(
column: ASPxClientGridViewColumn | number | string,
moveToColumnVisibleIndex?: number,
moveBefore?: boolean | ASPxClientGridColumnMovingTargetPosition,
moveToGroup?: boolean,
moveFromGroup?: boolean
): void
Parameters
Name | Type | Description |
---|---|---|
column | string | number | ASPxClientGridViewColumn | An ASPxClientGridViewColumn object that represents the column to move. |
moveToColumnVisibleIndex | number | The visible index of the target column displayed within the grid. |
moveBefore | boolean | ASPxClientGridColumnMovingTargetPosition |
|
moveToGroup | boolean |
|
moveFromGroup | boolean |
|
See Also