Wijmo UI for the Web
keyActionTab Field
wijmo.grid Namespace > IWijgridOptions Interface : keyActionTab Field

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

Syntax
var instance; // Type: wijmo.grid.IWijgridOptions;
var value; // Type: string
value = instance.keyActionTab;
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

IWijgridOptions Interface