Skip to main content
All docs
V23.2

ASPxClientTreeListBatchEditApi.SelectCell(nodeKey, columnIndex) Method

Selects a cell.

Declaration

SelectCell(
    nodeKey: string,
    columnIndex: number
): void

Parameters

Name Type Description
nodeKey string

the node key.

columnIndex number

The index of the column.

Remarks

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

<dx:ASPxTreeList ID="TreeList" ClientInstanceName="clientTList" ...>
      ...
</dx:ASPxTreeList>
clientTList.batchEditApi.SelectCell(node_key,5);
See Also