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

TreeViewSettings.NodeDataBound Property

Enables you to perform custom actions after a node has been bound to a data source.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public TreeViewNodeEventHandler NodeDataBound { get; set; }

Property Value

Type Description
TreeViewNodeEventHandler

A TreeViewNodeEventHandler method to which implementation of custom processing is delegated.

Remarks

The NodeDataBound property enables you to customize settings of the related node before it is finally rendered.

The processed node can be accessed by using the TreeViewNodeEventArgs.Node property of the event’s argument.

See Also