jQuery.wijmo.wijgrid Namespace > options type : selectionMode Field |
Default value: 'singleRow'
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".
Javascript (Usage) | |
---|---|
var value; // Type: string value = jQuery.wijmo.wijgrid.options.selectionMode; |
Javascript (Specification) | |
---|---|
|
// Set selectionMode to muliColumn and users can select more than one column using the CTRL or SHIFT keys. $("#element").wijgrid({ selectionMode: "multiColumn" });