GridView for ASP.NET Web Forms
selectionMode オプション
jQuery.wijmo.c1gridview 名前空間 > options タイプ : selectionMode オプション
Determines which cells, range of cells, columns, or rows can be selected at one time. Possible values are: "none", "singleCell", "singleColumn", "singleRow", "singleRange", "multiColumn", "multiRow" and "multiRange".
シンタックス
//値を取得する
var value; //タイプ: string
value = $(".selector").c1gridview("option", "selectionMode");

//値を設定します
var newValue; //タイプ: string
$(".selector").c1gridview("option", "selectionMode", newValue);
var selectionMode : string;
使用例
// Set selectionMode to muliColumn and users can select more than one column using the CTRL or SHIFT keys.
$("#element").wijgrid({ selectionMode: "multiColumn" });
解説
Possible values are: "none": Selection is turned off. "singleCell": Only a single cell can be selected at a time. "singleColumn": Only a single column can be selected at a time. "singleRow": Only a single row can be selected at a time. "singleRange": Only a single range of cells can be selected at a time. "multiColumn": It is possible to select more than one row at the same time using the mouse and the CTRL or SHIFT keys. "multiRow": It is possible to select more than one row at the same time using the mouse and the CTRL or SHIFT keys. "multiRange": It is possible to select more than one cells range at the same time using the mouse and the CTRL or SHIFT keys.
関連トピック

参照

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