wijmo.grid.wijgrid Namespace > options type : allowKeyboardNavigation Option |
Default value: true
Determines whether the user can move the current cell using the arrow keys.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: bool returnsValue = $(".selector").wijgrid("option", "allowKeyboardNavigation"); // Set value var newValue; // Type: bool $(".selector").wijgrid("option", "allowKeyboardNavigation", newValue); }); |
Javascript (Specification) | |
---|---|
|
// Users cannot move the selection using arrow keys if this option is set to false $("#element").wijgrid({ allowKeyboardNavigation: false });