ASP MVC TreeView的Kendo UI:代表Tree显示Json响应

问题描述 投票:0回答:1

我试图显示具有远程数据绑定的类别树。这是Controller方法:

    public JsonResult KendoTree(Guid? id)
    {
        var categoriesBO = _categoryManager.GetAllCategory().
            Where(c=> id==null ? c.ParentId==null : c.ParentId == id).
            Select(c=> new
            {
                id = c.Id,
                Name = c.Name,
                hasChildren = c.CategoryChilds.Any()
            });
        return Json(categoriesBO, JsonRequestBehavior.AllowGet);
    }

这是cshtml文件

    @{
    ViewBag.Title = "KendoTree";
}

    <h2>KendoTree</h2>

    @Html.Kendo().TreeView().Name("Categories").DataSource(dataSource => dataSource
        .Read(read => read.Action("KendoTree", "CategoryManagement")
    )).DataTextField("Name")

浏览器代表树显示Json结果(数组)。

我错过了什么吗?

kendo-ui kendo-asp.net-mvc
1个回答
0
投票

我明白了:我必须有一个Controller动作,它返回一个视图,然后从相关视图中调用kendo Html帮助器。

© www.soinside.com 2019 - 2024. All rights reserved.