jsTree dnd事件未触发

时间:2014-04-29 18:23:10

标签: drag-and-drop jstree

我试图在jsTree 3.0.0中捕获dnd事件。我使用演示代码来构建事件处理程序。树很好,但事件永远不会发生。我错过了什么?

这是相关部分。 JSON工作正常并构建树本身查找。但是,当我在树上拖放时,console.log调用永远不会发生。

<link href="/jquery/jquery-ui-1.10.3/css/ui-lightness/jquery-ui-1.10.3.custom.min.css" rel="Stylesheet"/>
<script src="/jquery/jquery-ui-1.10.3/js/jquery-1.9.1.js"/>
<script src="/jquery/jquery-ui-1.10.3/js/jquery-ui-1.10.3.custom.min.js"/>
<link href="/jquery/plugins/jsTree/themes/default/style.min.css" rel="stylesheet"/>
<script src="/jquery/plugins/jsTree/jstree.js"/>
<script>
    $(function () {
        $('#jstree')
        // listen for events
        .on('dnd_start.vakata', function (e, data) {
            console.log('Dragged');
        })
        .on('dnd_stop.vakata', function (e, data) {
            console.log('Dropped');
        })
        // create the instance
        .jstree({
            "core" : {
                "check_callback" : true,
                'data' : {                              
                    'url' : 'categoriesJson.pm?json=1',
                    'data' : function(node) {
                        console.log (node);
                        return {
                            'id' : node.id
                        }
                    }
                },
                "themes" : {
                    "stripes" : true
                }
            },
            "plugins" : [ "dnd" ]
        });

        $(document).bind("drag_stop.vakata", function (e, data) {
            if (data.data.jstree) {
                console.log('User stopped dragging');
            }
        });                 
    });
</script>                   

2 个答案:

答案 0 :(得分:21)

该事件仅在“文档”上触发。 试试这个:

$(document).on('dnd_start.vakata', function (e, data) {
    console.log('Started');
});

有效!

答案 1 :(得分:6)

在文档https://www.jstree.com/api/#/?q=event&f=dnd_start.vakata

DnD事件(dnd_start,dnd_move,dnd_stop)在文档上触发,而不是在树上触发。

这些事件与&#34; move_node.jstree&#34;不同。事件,只在Drag&amp; Drop(相当于Drop事件)。

$(document).bind("dnd_start.vakata", function(e, data) {
    console.log("Start dnd");
})
.bind("dnd_move.vakata", function(e, data) {
    console.log("Move dnd");
})
.bind("dnd_stop.vakata", function(e, data) {
    console.log("Stop dnd");
});
$("#tree").jstree({
    // tree...
}).bind("move_node.jstree", function(e, data) {
   console.log("Drop node " + data.node.id + " to " + data.parent);
});