Skip to main content
All docs
V23.2

ASPxClientTreeListBatchEditApi.GetSelectedCells Method

Gets information about the selected cells.

Declaration

GetSelectedCells(): ASPxClientTreeListCellInfo[]

Returns

Type Description
ASPxClientTreeListCellInfo[]

Information about the selected cells.

Remarks

Use the GetSelectedCells, SelectCell(nodeKey, columnIndex) and UnselectCell(nodeKey, columnIndex) methods to control the cell selection on the client side.

<dx:ASPxTreeList ID="TreeList" ClientInstanceName="clientTList" ...>
      ...
</dx:ASPxTreeList>
var selCells = clientTList.batchEditApi.GetSelectedCells();
See Also