var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: string value = instance.selectionMode;
var selectionMode : string;
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 instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: string value = instance.selectionMode;
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" });