moveSelection
moves selection in the specified direction
void moveSelection(string direction);
direction | string | the move direction |
Example
$$("list").moveSelection("top");
Details
The method can take only one of a predefined set of values.
The predefined values are:
- "top" - the selection is moved to the first item of the datatable (cell, row, column modes)
- "bottom" - the selection is moved to the last item of the datatable (cell, row, column modes)
- "up" - the selection is moved one row up (cell and row selection modes)
- "down" - the selection is moved one row down (cell and row selection modes)
- "right" - the selection is moved one column right (cell and column selection modes)
- "left" - the selection is moved one column left (cell and column selection modes)
- "pgup" - the selection is moved to the first item of the previous page (cell, row, column modes, if a pager is used in the datatable)
- "pgdown" - the selection is moved to the first item of the next page ((cell, row, column modes, if a pager is used in the datatable)
See also
Back to top