navigation

activates the selection keyboard navigation

boolean navigation;

Example

webix.ui({
    view:"datatable",
    navigation:true,
    ...
});


Default value:

true

Related samples

Details

The following keyboard commands are enabled:

Command Description
Up arrow key moves one cell (row) to the up
Down arrow key moves one cell (row) to the down
Left arrow key moves one cell (column) to the left
Right arrow key moves one cell (column) to the right
Home moves to the top left cell(row, column) in the grid
End moves to the bottom right cell(row, column) in the grid
PGUP scrolls the table up
PGDN scrolls the table down
See also
  • Articles
  • Back to top