keyNavigation
Optional. Enables keyboard navigation in Grid
keyNavigation?: boolean;
Default value: true
Example
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
selection: "complex",
editing: true,
keyNavigation: false
});
Related sample: Grid. Key navigation
You need to set the selection and editable properties in the configuration object of Grid to enable all available shortcut keys. Read the details in the Key Navigation article and in the Grid accessibility guide.
Change log:
added in v6.3; the keyboard navigation model was extended in v9.3.5