ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / allowKeyboardNavigation Option
In This Topic
    allowKeyboardNavigation Option
    In This Topic
    Determines whether the user can move the current cell using the arrow keys.
    Syntax
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "allowKeyboardNavigation");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("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 });
    Browser Compatibility
    8
    5
    5
    See Also