ASPxClientVerticalGrid.GetEditor(row) Method
Returns the editor used to edit the specified row’s values.
Declaration
GetEditor(
row: ASPxClientVerticalGridRow | number | string
): ASPxClientEdit
Parameters
Name | Type | Description |
---|---|---|
row | string | number | ASPxClientVerticalGridRow | An ASPxClientVerticalGridRowobject that specifies the required row within the client grid. |
Returns
Type | Description |
---|---|
ASPxClientEdit | An ASPxClientEdit object that is the specified row’s editor. |
Remarks
The GetEditor method can be used to get access to an instance of the specified row’s inplace editor. This method is in effect when the grid is switched to edit mode. If the grid is in browse mode, the GetEditor method returns null.
See Also