ASPxClientGridViewBatchEditApi.GetFocusedCell Method
In This Article
Gets information about a focused cell.
#Declaration
TypeScript
GetFocusedCell(): ASPxClientGridViewCellInfo
#Returns
Type | Description |
---|---|
ASPx |
Information about the focused cell. |
#Remarks
Use the GetFocusedCell
, SetFocusedCell(rowVisibleIndex, columnIndex), and SetFocusedCellByKey(key, columnIndex) methods to control the cell focus on the client side.
<dx:ASPxGridView ID="GridView" ClientInstanceName="clientGrid" ...>
...
</dx:ASPxGridView>
var selCol = clientGrid.batchEditApi.GetFocusedCell().column;
See Also