Skip to main content
All docs
V25.1
  • ASPxClientTreeListBatchEditApi.GetSelectedCells Method

    Gets information about the selected cells.

    #Declaration

    TypeScript
    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