web-dev-qa-db-ja.com

JsTreeチェックボックス-イベントをチェック

私はこのJsTreeを持っています

enter image description here

このコードで:

var Tree = $("#MyTree");

        Tree.jstree({
            "core": {
                "themes": {
                    "responsive": false,
                    "multiple" : false,
                },
                "data": dataTree
            },
            "types": {
                "default": {
                    "icon": "icon-lg"
                },
                "file": {
                    "icon": "icon-lg"
                }
            },
            "ui": {
                "select_limit": 1,
            },
            "plugins": ["wholerow", "types", "checkbox", "ui", "crrm", "sort"],
            "checkbox": {
                "three_state": false,
                "real_checkboxes": false
            }
        });

選択とチェックアクションを分離する必要があります。ユーザーは必要なすべてのノードをチェックする必要がありますが、時間の行は1つだけ選択します。今のところ、行のどこかをクリックしてその行を選択し、そのノードをチェックすると、ユーザーがクリックした場合にのみチェックボックスをオンにする必要があります。

私はたくさんのイベントを試しますが、その唯一の仕事は:

Tree.on("changed.jstree", function (e, data) { });

選択とチェックの両方のアクションをキャッチします。

助言がありますか?

9
Lorenzo Grossi

この回答は、jstreeのリリース3に関するものです。これは、2016年に使用する必要があるものです。残念ながら、サンプルコードはjstree rel 1を使用しているようです。

リリース3の場合

まず、選択状態とチェック状態の関連付けを解除します(checkbox.tie_selection:false)-参照 ドキュメント

次に、check_node.jstreeイベント

使用例

var data1 = [{
      "id": "W",
      "text": "World",
      "state": { "opened": true },
      "children": [{"text": "Asia"}, 
                   {"text": "Africa"}, 
                   {"text": "Europe",
                    "state": { "opened": false },
                    "children": [ "France","Germany","UK" ]
      }]
    }];

$('#Tree').jstree({ 
    core: {
      data: data1, 
      check_callback: false
    }, 
    checkbox: {       
      three_state : false, // to avoid that fact that checking a node also check others
      whole_node : false,  // to avoid checking the box just clicking the node 
      tie_selection : false // for checking without selecting and selecting without checking
    },
    plugins: ['checkbox']
})
.on("check_node.jstree uncheck_node.jstree", function(e, data) {
  alert(data.node.id + ' ' + data.node.text +
        (data.node.state.checked ? ' CHECKED': ' NOT CHECKED'))
})
<link href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/themes/default/style.min.css" type="text/css" rel="stylesheet" />
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/jstree.min.js"></script>
    <div id="Tree"></div>
22
edc65