1

我正在尝试重命名我的 jstree 中的一个文件夹,它应该更新数据库中的新名称。在尝试这样做时,我收到以下错误:

Microsoft JScript runtime error: Object doesn't support property or method 'css' in jquery.jstree.js file

我的代码:

.bind("rename.jstree", function (e, data) {
        $.post(
            "./ajax/server.aspx",
            {
                "operation": "rename_node",
                "id": data.rslt.obj.attr("id"),
                "title": data.rslt.new_name
            },
            function (r) {
                if (!r.status) {
                    $.jstree.rollback(data.rlbk);
                }
            }
        );
    })

Function to update New Name in DB

 private void rename_node()
    {
        int _id = Convert.ToInt32(Request.QueryString["id"]);
        string _folder_name = Request.QueryString["title"];
        try
        {
            _subscription_api.rename(_id, _folder_name);
        }
        catch
        {
            Response.Write("-1");
        }
    }

我是 JS 树和 JQuery 的新手。我正在尝试从我的 js 文件中调用一个函数,以便该函数将新文件夹名称更新为数据库。但是右键单击我的文件夹并单击重命名,我收到上述错误。

4

0 回答 0