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" });
関連トピック