html/css/js で折りたたみツリー テーブルを作成するにはどうすればよいでしょうか? 質問する

html/css/js で折りたたみツリー テーブルを作成するにはどうすればよいでしょうか? 質問する

表形式と階層形式の両方で表示するデータがあります。ユーザーがノードを展開したり折りたたんだりできるようにしたいと思います。

機能的な点を除けば、次のようになります。

http://www.maxdesign.com.au/articles/tree-table/

これを解決する最善の方法は何でしょうか? 既製のプラグインを使用することに反対しているわけではありません。

ベストアンサー1

スリックグリッドこの機能については、ツリーデモ

自分で構築したい場合は、ここに例があります(jsFiddle デモdata-depth):ツリー内の項目の深さを示す属性を使用してテーブルを構築します( levelXCSS クラスはインデントのスタイル設定のみに使用されます): 

<table id="mytable">
    <tr data-depth="0" class="collapse level0">
        <td><span class="toggle collapse"></span>Item 1</td>
        <td>123</td>
    </tr>
    <tr data-depth="1" class="collapse level1">
        <td><span class="toggle"></span>Item 2</td>
        <td>123</td>
    </tr>
</table>

次に、トグル リンクがクリックされると、Javascript を使用して、同等またはそれ以下の深さの要素が見つかる<tr>まですべての要素を非表示にします (すでに折りたたまれている要素は除く)。<tr>

$(function() {
    $('#mytable').on('click', '.toggle', function () {
        //Gets all <tr>'s  of greater depth below element in the table
        var findChildren = function (tr) {
            var depth = tr.data('depth');
            return tr.nextUntil($('tr').filter(function () {
                return $(this).data('depth') <= depth;
            }));
        };

        var el = $(this);
        var tr = el.closest('tr'); //Get <tr> parent of toggle button
        var children = findChildren(tr);

        //Remove already collapsed nodes from children so that we don't
        //make them visible. 
        //(Confused? Remove this code and close Item 2, close Item 1 
        //then open Item 1 again, then you will understand)
        var subnodes = children.filter('.expand');
        subnodes.each(function () {
            var subnode = $(this);
            var subnodeChildren = findChildren(subnode);
            children = children.not(subnodeChildren);
        });

        //Change icon and hide/show children
        if (tr.hasClass('collapse')) {
            tr.removeClass('collapse').addClass('expand');
            children.hide();
        } else {
            tr.removeClass('expand').addClass('collapse');
            children.show();
        }
        return children;
    });
});

おすすめ記事