使用Kendo UI树视图作为输入值

时间:2015-02-07 17:23:15

标签: kendo-ui kendo-asp.net-mvc kendo-treeview

我在 ASP.NET MVC 项目中使用Kendo UI TreeView以及 Kendo UI MVC Wrappers

我的视图中有HTML表单。以下是视图的代码:

<form method="POST" action="@Url.Action("Review")">
    @* ... *@
    @(Html.Kendo().TreeView()
        .Name("CategoryId")
        .DataTextField("Name")
        .DataSource(dataSource => dataSource
            .Read(read => read.Action("Categories", "ReviewCategories"))
        )
    )
    @* ... *@
    <input type="submit" class="btn btn-primary" value="Submit" />
</form>

树视图正常工作。以下是Categories 操作的代码:

public JsonResult Categories(int? id)
{
    var categories = this.forumCategoriesService.All()
       .Where(x => id.HasValue ? x.ParentId == id : x.ParentId == null)
       .Select(x => new { id = x.Id, Name = x.Title, hasChildren = x.Children.Any() });

    return this.Json(categories, JsonRequestBehavior.AllowGet);
}

问题,当我点击submit按钮时,表单会发送除所选CategoryId的值以外的所有数据。

当我提交表单时,Kendo UI TreeView发送CategoryId的最常用方法是什么?

(如果没有简单的方法将其作为输入值发送,我将接受任何自定义JavaScript代码解决方案)

1 个答案:

答案 0 :(得分:2)

我找到了解决方法

首先:使用所需参数创建隐藏输入:

<input type="hidden" name="CategoryId" id="CategoryId" value="@Model.CategoryId" />

第二:为树视图添加on select事件处理程序:

@(Html.Kendo().TreeView()
    .Name("CategoryIdTreeView")
    .DataTextField("Name")
    .Events(ev => ev.Select("onCategorySelect"))     @* <--------------- *@
    .DataSource(dataSource => dataSource
        .Read(read => read.Action("Categories", "ReviewCategories"))
    )
)

第三:实施处理程序并更改其中#CategoryId的值

function onCategorySelect(ev) {
    var dataItem = this.dataItem(ev.node);
    var categoryId = dataItem.id;
    $("#CategoryId").val(categoryId);
}

如果有人知道更好的解决方案,欢迎再添加一个答案。