Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Dynatree で作成されたツリーがあり、その中にチェックボックスがあります。
チェックされたチェックボックスのリスト(または配列)を取得して、それらを操作(別のツリーに移動)できるようにする方法を教えてください。
前もってTnx!
わかりました、ここにあります:
var selNodes = node1.tree.getSelectedNodes(); // convert to title/key array var selKeys = $.map(selNodes, function(node1){ alert("[" + node1.data.key + "]: '" + node1.data.title + "'"); });