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.
var instance = new wijmo.grid.selection(); var value; // Type: cellInfoOrderedCollection value = instance.selectedCells();
function selectedCells() : cellInfoOrderedCollection;
var selectedCells = selectionObj.selectedCells(); for (var i = 0, len = selectedCells.length(); i < len; i++) { alert(selectedCells.item(i).value().toString()); }