web-dev-qa-db-ja.com

チェックイベントでjstreeで選択されたすべてのノードを取得しますか?

Get_bottom_selectedを使用して、JSTreeでチェック/選択されたすべてのノードを取得しています。次のメソッドを呼び出すボタンをフォームに設定すると、機能します。チェックボックスのクリックイベントから同じ関数を呼び出そうとすると、ノードがいくつかある場合でも、選択されたノードが見つかりません。

function testit() {
    var data = $('#my_tree').jstree(true).get_bottom_selected(true);
    for(var count = 0; count < data.length; count++){
        // Do Stuff 
    }
}

次のイベントが発生したときに、関数を呼び出して、選択したすべての子ノードを取得したいのですが、機能しません。ボタンクリックイベントからの呼び出しとは異なる動作をする、このイベントに固有の何かがありますか?

.on("check_node.jstree uncheck_node.jstree", function(e, data) {
            testit(); // first line of this function does not get any selected data, even if several are selected. When called from a button click event in my form it does work. 
            });

現在、jstreeを設定する方法は次のとおりです。

$('#my_tree')
.on("changed.jstree", function (e, data) {
    // Do Stuff
})
.jstree({
checkbox: {
    "keep_selected_style": false,
    "visible" : true,
    "three_state": true,
    "whole_node" : true,
},
plugins: ['checkbox'],
    'core' : {
    'multiple' : true,
    'data' : {
    "url" : "/static/content_data.json",
    "dataType" : "json" 
    }
}
})
.on("check_node.jstree uncheck_node.jstree", function(e, data) {
    testit();
});
15
user1904898

厳密モード のため、get_bottom_checkedを使用しようとすると例外が発生します

TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. at Function.invokeGetter (<anonymous>:2:14)

選択したノードのIDだけが必要な場合は、イベントハンドラーのチェックまたはチェック解除からdata.selectedを使用できますが、それ以上が必要な場合は、「data.instance._model.data」を使用できます。私の例でわかるように、選択されたアイテムが1つだけで、その状態が開いている場合にアラートを送信しようとしています。コード例では、 `Europe1を開いてチェックボックスを選択すると、アラートが表示されます。

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

function testit(data) {
  alert(data.length + ' and ids are ' +data );
  for (var count = 0; count < data.length; count++) {

  }
  
}
$('#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']
})
$('#Tree').on("check_node.jstree uncheck_node.jstree", function(e, data) {
 if (data.selected.length === 1) { alert(data.instance._model.data[data.selected].state['opened']); }
  testit(data.selected);
});
<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>
7
Narendra

this によると、選択したすべてのノードを取得できますon changeこのようなイベント:

    $('#jstree').on('changed.jstree', function (e, data) {
    var i, j, r = [];
    for(i = 0, j = data.selected.length; i < j; i++) {
      r.Push(data.instance.get_node(data.selected[i]).text);
    }
    $('#event_result').html('Selected: ' + r.join(', '));
  }).jstree();
2
Palak Jadav