Skip to main content

ASPxClientTreeList.IsNodeSelected(nodeKey) Method

Indicates whether the specified node is selected.

Declaration

IsNodeSelected(
    nodeKey: string
): boolean | null

Parameters

Name Type Description
nodeKey string

A String value that identifies the node by its key value.

Returns

Type Description
boolean

true if the specified node is selected; false if the specified node isn’t selected; null if the specified node was not found on the client.

Remarks

To select/unselect a node, use the ASPxClientTreeList.SelectNode. To learn more, see Selection.

See Also