Skip to main content

ASPxClientTreeList.GetEditor(column) Method

Returns the editor used to edit the specified column’s values.

Declaration

GetEditor(
    column: ASPxClientTreeListColumn | number | string
): any

Parameters

Name Type Description
column string | number | ASPxClientTreeListColumn

An ASPxClientTreeListColumn object that represents the data column within the client ASPxTreeList.

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