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

Default value: 'moveAcross'

Determines the action to be performed when the user presses the TAB key.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "keyActionTab");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("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).
See Also

Reference

options type
wijgrid jQuery Widget