Skip to main content

BootstrapClientTreeViewNode.GetNodeByName(name) Method

Returns the current node’s child node specified by its name.

Declaration

GetNodeByName(
    name: string
): BootstrapClientTreeViewNode

Parameters

Name Type Description
name string

A string value specifying the name of the node.

Returns

Type Description
BootstrapClientTreeViewNode

A BootstrapClientTreeViewNode object that represents the current node’s child with the specified name.

Remarks

A Tree View control’s client-side functionality allows individual nodes to be accessed programmatically. The GetNodeByName method gets a specific client node which is a child node of the current node. The obtained child node is specified by its name, which is defined by the Name property.

This method searches the specified node amongst all child nodes of the current node (throughout all child levels). Note that if an invalid name is passed via the parameter, this method returns null.

In order to access a particular node specified by its name throughout all Tree View levels, the BootstrapClientTreeView.GetNodeByName method can be used.

See Also