Hai All How can i add a tree view in MVC.
+2
A:
One example which has been around a while.
This example is quite descriptive and adds an extension to HtmlHelper of type TreeView. For example:
<%= Html.TreeView("locations",
Model.Locations,
l => l.ChildrenLocations,
l => l.Name) %>
Ray Hayes
2010-08-03 10:38:20
+2
A:
Dyna Tree http://guyellisrocks.com/coding/asp-net-mvc-with-jquery-dynatree-plugin-for-checkboxes/ Telerik Treeview for asp.net mvc http://demos.telerik.com/aspnet-mvc/treeview
Tassadaque
2010-08-03 14:07:57