This is a migrated thread and some comments may be shown as answers.

Treeview with ListBox/Combobox nodes

1 Answer 90 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Gregory Bergmann
Top achievements
Rank 1
Gregory Bergmann asked on 12 Mar 2013, 07:19 PM
Hello,

I was wondering if its possible to have a treeview with the nodes being comboboxes/ listboxes.  The selection of one item may have additional nodes of additional comboboxes/listboxes.

Thanks in advance,

Mike

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 14 Mar 2013, 07:01 AM
Hello Mike,

RadTreeView fully supports templates. You can embed any content inside a RadTreeView template like HTML markup, ASP.NET server controls and Third-party controls (other Telerik controls as well).

You can define two types of RadTreeView templates:

1. Global Templates - template that is automatically applied to all tree-nodes:
<telerik:RadTreeView ID="RadTreeView1" runat="server">
       <NodeTemplate>
              ... 
        </NodeTemplate>
</telerik:RadTreeView>
2. Per-node template - template that overrides the global template on a node basis.
<telerik:RadTreeView ID="RadTreeView1" runat="server">
        <telerik:RadTreeNode Text="Node">
            <NodeTemplate>
                   ...
            <NodeTemplate>
        </telerik:RadTreeNode>
     </telerik:RadTreeView>

Thanks,
Princy.
Tags
TreeView
Asked by
Gregory Bergmann
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or