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