MVC中的树视图

时间:2010-08-03 10:32:00

标签: asp.net-mvc

海全部 如何在MVC中添加树视图。

1 个答案:

答案 0 :(得分:2)

One example已经有一段时间了。

This example非常具有描述性,并为TreeView类型的HtmlHelper添加了扩展。例如:

<%= Html.TreeView("locations",
    Model.Locations,
    l => l.ChildrenLocations,
    l => l.Name) %>