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.
Change log:
added in v6.3