This question is locked. New answers and comments are not allowed.
This code:
Produces only this output:
Why?
Thanks, Darin
@{Html.Telerik().TreeView() .Name("TreeView") .BindTo((IEnumerable)Model, mappings => { mappings.For<NavigationTreeNode>(binding => binding .ItemDataBound((item, node) => { item.Text = node.ShortTitle; item.Expanded = true; }) .Children(node => node.Children)); }); }
Produces only this output:
- Item 1
- Sub item 1
- Sub item 2
- Sub item 3
- Sub item 4
- Item 2
- Item 3
- Item 4
Why?
Thanks, Darin