Wijmo UI for the Web
allowKeyboardNavigation Option
wijmo.grid.wijgrid Namespace > options type : allowKeyboardNavigation Option

Determines whether the user can change the current cell using the keyboard arrow keys.

Default value: true

Type: Boolean

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijgrid("option", "allowKeyboardNavigation");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijgrid("option", "allowKeyboardNavigation", newValue);
        
});
var allowKeyboardNavigation : boolean;
Example
// Users cannot move the selection using arrow keys if this option is set to false
$("#element").wijgrid({ allowKeyboardNavigation: false });
Remarks
Setting this value to false forces the user to use a mouse to move focus to a different cell, row, or column.
See Also

Reference

options type
wijgrid jQuery Widget