ASPxClientVerticalGridBatchEditApi.GetFocusedCell Method
Gets information about a focused cell.
Declaration
GetFocusedCell(): ASPxClientVerticalGridCellInfo
Returns
Type | Description |
---|---|
ASPxClientVerticalGridCellInfo | Information about the focused cell. |
Remarks
Use the GetFocusedCell
, SetFocusedCellByKey(key, rowIndex), and SetFocusedCell(visibleIndex, rowIndex) methods to control the cell focus on the client side.
<dx:ASPxVerticalGrid ID="VerticalGrid" ClientInstanceName="clientVGrid" ...>
...
</dx:ASPxVerticalGrid>
var selRow = clientVGrid.batchEditApi.GetFocusedCell().row;
See Also