ASPxClientTreeList.GetEditor(column) Method
In This Article
Returns the editor used to edit the specified column’s values.
#Declaration
TypeScript
GetEditor(
column: ASPxClientTreeListColumn | number | string
): any
#Parameters
Name | Type | Description |
---|---|---|
column | string | number | ASPx |
An ASPx |
#Returns
Type | Description |
---|---|
any | An object that represents the specified column’s editor. |
#Remarks
The GetEditor method can be used to get access to an instance of the specified column’s inplace editor. This method is in effect when the tree list is switched to edit mode. If the tree list is in browse mode, the GetEditormethod returns null.
See Also