GridView for ASP.NET Web Forms
keyActionTab オプション
jQuery.wijmo.c1gridview 名前空間 > options タイプ : keyActionTab オプション
Determines the action to be performed when the user presses the TAB key.
シンタックス
//値を取得する
var value; //タイプ: string
value = $(".selector").c1gridview("option", "keyActionTab");

//値を設定します
var newValue; //タイプ: string
$(".selector").c1gridview("option", "keyActionTab", newValue);
var keyActionTab : string;
使用例
$("#element").wijgrid({ keyActionTab: "moveAcross" });
解説
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).
関連トピック

参照

options タイプ
c1gridview jQuery ウィジェット