aspnetbootstrap-devexpress-dot-web-dot-bootstrap-87c45b26.md
Represents the web navigation treelike control.
Namespace : DevExpress.Web.Bootstrap
Assembly : DevExpress.Web.Bootstrap.v25.2.dll
NuGet Package : DevExpress.Web.Bootstrap
[DXClientDocumentationProviderWeb("BootstrapTreeView")]
[ToolboxTabName("DX.25.2: Bootstrap Controls")]
public class BootstrapTreeView :
ASPxTreeView,
ISimpleRenderControl
<ToolboxTabName("DX.25.2: Bootstrap Controls")>
<DXClientDocumentationProviderWeb("BootstrapTreeView")>
Public Class BootstrapTreeView
Inherits ASPxTreeView
Implements ISimpleRenderControl
The following members return BootstrapTreeView objects:
Note
The BootstrapTreeView control provides you with comprehensive client-side functionality implemented using JavaScript code:
The control’s client-side API is enabled if the ASPxTreeView.EnableClientSideAPI property is set to true, or the ASPxTreeView.ClientInstanceName property is defined, or any client event is handled.
This example demonstrates the basic functionality of the Tree View control.
BootstrapTreeView class.The image below shows the result:
<dx:BootstrapTreeView runat="server">
<Nodes>
<dx:BootstrapTreeViewNode Text="Home" Expanded="true">
<Nodes>
<dx:BootstrapTreeViewNode Text="News">
<Nodes>
<dx:BootstrapTreeViewNode Text="For Developers">
</dx:BootstrapTreeViewNode>
<dx:BootstrapTreeViewNode Text="Website news">
</dx:BootstrapTreeViewNode>
</Nodes>
</dx:BootstrapTreeViewNode>
<dx:BootstrapTreeViewNode Text="Our Mission">
</dx:BootstrapTreeViewNode>
</Nodes>
</dx:BootstrapTreeViewNode>
...
</Nodes>
</dx:BootstrapTreeView>
Object Control WebControl ASPxWebControlBase ASPxWebControl ASPxDataWebControlBase ASPxHierarchicalDataWebControl ASPxTreeView BootstrapTreeView
See Also