ASPxClientGridViewBatchEditApi.GetSelectedCells Method
Gets information about the selected cells.
#Declaration
GetSelectedCells(): ASPxClientGridViewCellInfo[]
#Returns
Type | Description |
---|---|
ASPx |
Information about the selected cells. |
#Remarks
Use the following methods to control the cell selection on the client side:
GetSelectedCells
- SelectCell(rowVisibleIndex, columnIndex)
- SelectCellByKey(key, columnIndex)
- UnselectCell(rowVisibleIndex, columnIndex)
- UnselectCellByKey(key, columnIndex)
<dx:ASPxGridView ID="GridView" ClientInstanceName="clientGrid" ...>
...
</dx:ASPxGridView>
var selCells[] = clientGrid.batchEditApi.GetSelectedCells();