Documentation

moveSelection

moves selection in the specified direction

void moveSelection(string direction);

Parameters

directionstringthe move direction

See also

Example

$$("list").moveSelection("top");

Details

The method can take only one of a predefined set of values.
The predefined values are:

  • 'up' ( cell and row selection modes)
  • 'down' (cell and row selection modes)
  • 'right' (cell and column selection modes)
  • 'left' (cell and column selection modes)
Back to top