ASPxClientTreeListBatchEditApi.GetFocusedCell Method
In This Article
Gets information about a focused cell.
#Declaration
TypeScript
GetFocusedCell(): ASPxClientTreeListCellInfo
#Returns
Type | Description |
---|---|
ASPx |
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