Wijmo UI for the Web
selectedCells Method
wijmo.grid Namespace > selection type : selectedCells Method
Gets a read-only collection of the selected cells.
Syntax
var instance = new wijmo.grid.selection();
var value; // Type: cellInfoOrderedCollection
value = instance.selectedCells();
function selectedCells() : cellInfoOrderedCollection;

Return Value

A read-only collection of the selected cells.
Example
var selectedCells = selectionObj.selectedCells();
for (var i = 0, len = selectedCells.length(); i < len; i++) {
alert(selectedCells.item(i).value().toString());
}
See Also

Reference

selection type