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

    Gets information about a focused cell.

    #Declaration

    TypeScript
    GetFocusedCell(): ASPxClientTreeListCellInfo

    #Returns

    Type Description
    ASPxClientTreeListCellInfo

    Information about the focused cell.

    #Remarks

    Use the GetFocusedCell and SetFocusedCell(nodeKey, columnIndex) methods to control the cell focus on the client side.

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