Jstree set_type

发布于 2024-09-16 19:33:59 字数 777 浏览 9 评论 0原文

我将 set_type 方法绑定到 jstree 实例,然后在单击按钮时调用 set_type 方法。这是我的代码:

$("#treeDiv").jstree({..}).bind("set_type.jstree", function(e, data) {
            $.post(
                "./classes/jstree/_demo/server.php", 
                {
                    "operation" : "set_type", 
                    "id" : data.rslt.obj.attr("id").replace("node_",""),
                    "type" : data.rslt.obj.attr("type")
                }, 
                function (r) {
                    if(!r.status) {
                        $.jstree.rollback(data.rlbk);
                    }
                }
            );
        });


$("#settype").click(function() {
    $("#treeDiv").jstree("set_type", "block", "#node_663");
});

图标的类型发生变化,但数据库中的类型值没有变化。我做错了什么?

I'm binding a set_type method to my jstree instance, and then calling the set_type method when clicking a button. Here's my code:

$("#treeDiv").jstree({..}).bind("set_type.jstree", function(e, data) {
            $.post(
                "./classes/jstree/_demo/server.php", 
                {
                    "operation" : "set_type", 
                    "id" : data.rslt.obj.attr("id").replace("node_",""),
                    "type" : data.rslt.obj.attr("type")
                }, 
                function (r) {
                    if(!r.status) {
                        $.jstree.rollback(data.rlbk);
                    }
                }
            );
        });


$("#settype").click(function() {
    $("#treeDiv").jstree("set_type", "block", "#node_663");
});

Type of the icon changes, but the type value dosen't changes in db. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

oО清风挽发oО 2024-09-23 19:33:59

解决了。我发现 class.tree.php 没有更新数据库中类型的方法。

Solved it. I found that class.tree.php has no method that updates type in the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文