tags:

views:

54

answers:

2

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