Wijmo UI for the Web
selectionMode Option

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".

Syntax
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "selectionMode");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("option", "selectionMode", newValue);
        
});
Javascript (Specification) 
var selectionMode : string;
Example
// Set selectionMode to muliColumn and users can select more than one column using the CTRL or SHIFT keys.
$("#element").wijgrid({ selectionMode: "multiColumn" });
Remarks
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.
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.