Wijmo UI for the Web
allowKeyboardNavigation Option

Default value: true

Determines whether the user can move the current cell using the arrow keys.

Syntax
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) 
var allowKeyboardNavigation : bool;
Example
// Users cannot move the selection using arrow keys if this option is set to false
$("#element").wijgrid({ allowKeyboardNavigation: false });
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.