0

我目前正在使用 DevExpress 的 TreeView,它被用来在我的 ASP mvc 站点中导航。

但是,阅读文档时,我似乎找不到对实际导航的任何引用,尤其是当我从xml文件中绑定数据时。

我的ContentLeftPartialView

<div class="leftPanel">
        @* DXCOMMENT: Configure the left panel's treeview *@
    @Html.DevExpress().TreeView(settings => {
        settings.Name = "LeftTreeView";
    }).BindToXML(HttpContext.Current.Server.MapPath("~/App_Data/SideMenu.xml"), "/menu/*").GetHtml()
</div>

以我xml存在的基础

<?xml version="1.0" encoding="utf-8" ?>
<menu>
  <group Text="Graphics">
    <item Text="General Overview" />
  </group>
  <group Text="Reports">
    <item Text="Report Manager" />
    <item Text="Product Delivery Report" />
    <item Text="Inventory Report" />
    <item Text="Stock Report" />
  </group>
 <group Text="Stocks">
    <item Text="stock 1" />
    <item Text="stock 2" />
  </group>
 <group Text="Systems">
    <item Text="system 1" />
    <item Text="system 2" />
  </group>
 <group Text="Lock Interface">
  </group>
   <group Text="Settings">
  </group>
</menu>

我完全不知道应该将ActionLinks/etc 放在哪里,以便能够浏览我的网站(该面板将在所有页面中保持不变)。

有没有人有任何使用 DevExpress 的 HTML 5 / MVC 的经验来为我指明正确的方向?

我知道另一个项目使用了这个:

 public ActionResult Products()
        {
            ViewBag.Message = "Your Products page.";

            return View();
        }

但它只是使用了如下链接:

 <li>@Html.ActionLink("Products", "Index", "Products")</li>

我认为 DevExpress 的部分视图上的树视图不会发生这种情况。

4

1 回答 1

1

我发现了如何使用NavigateUrlxml 文件中的 进行导航,尽管这并不是我想要放置它的确切位置(我更愿意动态添加它)。

但是,使用:

 <group Text="Graphics">
    <item Text="General Overview" NavigateUrl="/mygraphicsPage"/>
 </group>

允许我按treeview将导航到“ ”的“一般概述mygraphicsPage.cshtml”。

所以重要的页面是添加

NavigateUrl="myurl" to the items.
于 2014-09-23T11:23:43.913 回答