ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / keyActionTab Option
In This Topic
    keyActionTab Option
    In This Topic
    Determines the action to be performed when the user presses the TAB key.
    Syntax
    // Get value
    var value; // Type:  string
    value = $(".selector").c1gridview("option", "keyActionTab");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").c1gridview("option", "keyActionTab", newValue);
    var keyActionTab : string;
    Example
    $("#element").wijgrid({ keyActionTab: "moveAcross" });
    Remarks
    This option is invalid when the allowKeyboardNavigation is set to false. Possible values are: "moveAcross": The focus will be kept inside the grid and current selected cell will move cyclically between grid cells when user press TAB or SHIFT+TAB key. "moveAcrossOut": The focus will be able to be moved from the grid to the next focusable element in the tab order when user press TAB key and the current selected cell is the last cell (or press SHIFT+TAB and the current selected cell is the first cell).
    Browser Compatibility
    8
    5
    5
    See Also