1

首先对不起我的英语。我对 ASP.NET MVC4 上的 KendoUI TreeView 控件有疑问。

<div class="treeview-back">
@(Html.Kendo().TreeView()
    .Name("treeview-left")
    .DragAndDrop(true)
    .Events(ItemAction)
    .BindTo(Model)
)

我得到了树视图和绑定事件 OnDrop:

function OnDrop(e) {
dropped = GetValueFromTags(e.destinationNode.innerHTML);
inDrag = !inDrag;
OnHover();
e.setValid(e.valid && id > 10000);
if (e.valid && id > 10000) {

    var webMethod = "/Sitemap/UpdateData";
    var data = $("div.treeview-back").find("span.items").text();
    //var data = $("div.treeview-back").data("kendoTreeView").dataSource.data();
    console.log(data);

    $.ajax({
        type: "POST",
        url: webMethod,
        data: data,
        contentType: "application/json",
        dataType: "json",
        converters: {
            'text json': true
        },
        success: function(data) {

        },
        error: function(data) {
            console.log("error: " + data);
        }
    });
}

}

我在 Controller 中的操作:

    [HttpPost]
    public ActionResult UpdateData(IEnumerable<TreeViewItemModel> data) 
    {
        // some database operations here
        return Json(data);
    }

我想将我的树视图的当前状态发送到行动。问题是当前方法正在发送空值。我能够发送数据源,但它是原始数据(我在启动时绑定到控制),而不是当前数据。

感谢您的帮助, Łukasz

4

0 回答 0