24

我有 37 种不同的节点类型。我正在尝试实现拖放。这可行,但我需要准确限制可以拖动哪些类型以及可以删除它们的位置。不幸的是,我在文档中找不到任何有用的信息(http://www.jstree.com/documentation)。

到目前为止,我已经尝试了三种方法:

首先:根据节点类型在drag_check回调中定义true或false的返回值:

$("#demo1").jstree({
    "dnd" : {
        "drag_check" : function () {

第二:绑定到 prepare_move.jstree 事件并根据节点类型返回 true 或 false 值:

.bind("prepare_move.jstree", function (e, data) {
   if (data.rslt.o.attr("typ") === "tpop") {

第三:使用类型插件并在那里定义有效的孩子:

$("#tree").jstree( {
    "types": {
        "type_attr": "typ",
        "valid_children": ["ap_ordner_pop", "ap_ordner_apziel", "ap_ordner_erfkrit", "ap_ordner_apber", "ap_ordner_ber", "ap_ordner_beob", "iballg", "ap_ordner_ibb", "ap_ordner_ibartenassoz"],
        "types": {
        "ap_ordner_pop": {
            "valid_children": "pop"
        },
        "pop": {
            "valid_children": ["pop_ordner_tpop", "pop_ordner_popber", "pop_ordner_massnber"],
            "new_node": "neue Population"
        },
        "pop_ordner_tpop": {
            "valid_children": "tpop"
        }

但我仍然可以在几乎任何地方删除大多数节点。这必须怎么做?或者你能给我举一个很好的例子吗?

非常感谢您的帮助。

4

2 回答 2

54

对于那些使用 jstree v3 寻找答案的人。crrm 插件已被删除,您将需要使用“ check_callback ”。

在我的情况下,我想做的就是阻止子项目被拖到其他子项目中。可能有更好的方法来做到这一点,但经过几个小时的进展,这对我有用。

我相信您还需要将“check_while_dragging”dnd 选项设置为 true,以便在拖动时触发“check_callback”。

这是我的 jsTree 初始化:

$("#jsTree").jstree({
            'core': {
                'data': window.treeData,
                'themes': {
                    'icons': false
                },
                'check_callback': function(operation, node, node_parent, node_position, more) {
                    // operation can be 'create_node', 'rename_node', 'delete_node', 'move_node' or 'copy_node'
                    // in case of 'rename_node' node_position is filled with the new node name

                    if (operation === "move_node") {
                        return node_parent.original.type === "Parent"; //only allow dropping inside nodes of type 'Parent'
                    }
                    return true;  //allow all other operations
                }
            },
            "state": { "key": "<%=Request.QueryString["type"]%>_infotree" },
            "dnd": {
                check_while_dragging: true
            },
            "plugins": ["state", "dnd", "types"]
        })
于 2014-05-06T05:14:06.640 回答
12

在目标上,您需要检查是否允许将对象放在那里。正如您所指出的,您似乎有某种机制可以闻到物体的味道:

 if (data.rslt.o.attr("typ") === "tpop")

那挺好的。在执行多树操作时,使用该技术将一种对象类型与另一种对象类型区分开来。在下面的示例中,我使用来自源和目标的类名来进行我自己独特的“气味测试”。不要复制和粘贴,否则您会感到困惑。您需要使用自己的测试类型来接受/拒绝从一棵树拖放到另一棵树。我所有的测试都是在 crrm check_move 函数中完成的。

.jstree({
 "crrm" : {
    input_width_limit : 200,
    move : {
        always_copy     : "multitree", // false, true or "multitree"
        open_onmove     : false,
        default_position: "last",
        check_move      : function (m) { 
                            if(!m.np.hasClass("someClassInTarget")) return false;
                            if(!m.o.hasClass("someClassInSource")) return false;
                            return true;
                          }
    }
 },
 "dnd" : {
    copy_modifier   : $.noop,
    drop_target     : ".someWrapperClassInSource",
    drop_check      : function (data) { return true; },
    drop_finish     : function (data) {
                            $.jstree._reference(this.get_container()).remove($(data.o));
                      },
    drag_target     : ".someClassInSource",
    drag_finish     : function (data) {;},
    drag_check      : function (data) { return { after : false, before : false, inside : true }; }
 },
于 2012-06-13T10:53:44.620 回答