1

jstree v1.0

チェックボックスの例を変更しました:http://www.jstree.com/documentation/checkbox

私の目標: ノードのいずれかをチェックするときに、すべての親ノードをチェックする必要があります (デフォルトの動作は問題ありません。部分的に選択されているため、私には適していません)。

ヒントとドキュメントに基づいて、元の例を拡張しましたが、check_nodeメソッドが機能していないことがわかりました。私は何の効果も感じていません。

ヒントやアドバイスは大歓迎です。

<div id="demo1" class="demo">
    <ul>
        <li id="phtml_1">
            <a href="#">Root node 1</a>
            <ul>
                <li id="phtml_2" >
                    <a href="#">Child node 1</a>
                </li>
                <li id="phtml_3">
                    <a href="#">A Child node 2</a>
                </li>
            </ul>
        </li>
        <li id="phtml_4">
            <a href="#">Root node 2</a>
        </li>
        <li id="phtml_5">
            <a href="#">Root node 1</a>
            <ul>
                <li id="phtml_51">
                    <a href="#">Child node 1</a>
                </li>
                <li id="phtml_52">
                    <a href="#">A Child node 2</a>
                </li>
            </ul>
        </li>
        <li id="phtml_6">
            <a href="#">Root node 1</a>
            <ul>
                <li id="phtml_61">
                    <a href="#">Child node 1</a>
                </li>
                <li id="phtml_62">
                    <a href="#">A Child node 2</a>
                </li>
            </ul>
        </li>
    </ul>
</div>
<script type="text/javascript" class="source">
$(function () {
    var x = $("#demo1");
    $(x).jstree({
        "checkbox" :{
            real_checkboxes:false,
            override_ui:true,
            two_state:false,    
        },
        "plugins" : [ "themes", "html_data", "checkbox", "ui" ]
    }).bind('check_node.jstree', function (e, data) { 
        console.log('check_node.jstree ----------------------------------------------');
        console.log(e);
        var all_selected = $(x).jstree('get_checked')
        console.log('all_selected='+all_selected);
        for(var i=0;i<all_selected.length;i++){
            var paths = $(x).jstree('get_path', all_selected[i], true);
            console.log('  paths='+paths);
            for(var j=0; j< paths.length;j++){
                console.log('    checking node (not working)='+paths[j]);
                $(x).jstree('check_node',paths[j]);
            }
        }
    });
    console.log('programaticcaly checking last parent node (not working)')
    //$(x).jstree('check_node',$('li#phtml_6'));
    $.jstree._reference("#demo1").check_node('li#phtml_6');
});
</script>
4

4 に答える 4

4

次のコードは私のために働いていました...

var contact_list = $('#compose_contact_list');

    contact_list.jstree({
        「チェックボックス」:{
            "keep_selected_style": false,
            "tie_selection": false
        }、
        「プラグイン」:[「チェックボックス」]
    });

    contact_list.on("check_node.jstree", 関数(イベント, データ){
        アラート (data.node.text);
    });
于 2014-10-06T12:06:51.343 に答える
2

これを試して、

.bind('check_node.jstree', function(e, data) {
    var currentNode = data.rslt.obj.attr("id");
    var parentNode = data.inst._get_parent(data.rslt.obj).attr("id");
   jQuery.jstree._reference($("#tree")).check_node('#'+parentNode);
 });

例が必要な場合は、これを参照してくださいhttp://jsfiddle.net/bwTrP/3/

于 2013-04-19T06:28:28.110 に答える