Skip to main content
A newer version of this page is available. .

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

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