GridView for ASP.NET Web Forms
editingInitOption オプション
jQuery.wijmo.c1gridview 名前空間 > options タイプ : editingInitOption オプション
Determines an action to bring a cell in the editing mode when the editingMode option is set to "cell". Possible values are: "click", "doubleClick", "auto".
シンタックス
//値を取得する
var value; //タイプ: string
value = $(".selector").c1gridview("option", "editingInitOption");

//値を設定します
var newValue; //タイプ: string
$(".selector").c1gridview("option", "editingInitOption", newValue);
var editingInitOption : string;
使用例
$("#element").wijgrid({ editingInitOption: "auto" });
解説
Possible values are: "click": cell is edited via a single click. "doubleClick": cell is edited via a double click. "auto": action is determined automatically depending upon user environment. If user has a mobile platform then "click" is used, "doubleClick" otherwise.
関連トピック

参照

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