Home > Net >  Bootstrap-treeview : How to close child and grandchild when the page load in treeview
Bootstrap-treeview : How to close child and grandchild when the page load in treeview

Time:04-30

Currently my treeview is like this , when the page load it opens the child tag. how to keep the child tag closed when the page load.

when the page load Menu 1 needs to be closed until the user click

enter image description here

here is the expected result : enter image description here

Here is my html file.

$(function () {
    $('.tree li:has(ul)').addClass('parent_li').find(' > span').attr('title', 'Collapse this branch');
    $('.tree li.parent_li > span').on('click', function (e) {
        var children = $(this).parent('li.parent_li').find(' > ul > li');
        if (children.is(":visible")) {
            children.hide('fast');
            $(this).attr('title', 'Expand this branch').find(' > i').addClass('icon-plus-sign').removeClass('icon-minus-sign');
        } else {
            children.show('fast');
            $(this).attr('title', 'Collapse this branch').find(' > i').addClass('icon-minus-sign').removeClass('icon-plus-sign');
        }
        e.stopPropagation();
    });
});
.tree {
    min-height:20px;
    padding:19px;
    margin-bottom:20px;
    background-color:#fbfbfb;
    border:1px solid #999;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)
}
.tree li {
    list-style-type:none;
    margin:0;
    padding:10px 5px 0 5px;
    position:relative
}
.tree li::before, .tree li::after {
    content:'';
    left:-20px;
    position:absolute;
    right:auto
}
.tree li::before {
    border-left:1px solid #999;
    bottom:50px;
    height:100%;
    top:0;
    width:1px
}
.tree li::after {
    border-top:1px solid #999;
    height:20px;
    top:25px;
    width:25px
}
.tree li span {
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid #999;
    border-radius:5px;
    display:inline-block;
    padding:3px 8px;
    text-decoration:none
}
.tree li.parent_li>span {
    cursor:pointer
}
.tree>ul>li::before, .tree>ul>li::after {
    border:0
}
.tree li:last-child::before {
    height:30px
}
.tree li.parent_li>span:hover, .tree li.parent_li>span:hover ul li span {
    background:#eee;
    border:1px solid #94a0b4;
    color:#000
}
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"/>

<div >
    <ul>
        <li>
            <span><i ></i> Parent</span> 
            <ul>
                <li>
                    <span><i ></i> Child</span> 
                    <ul>
                        <li>
                            <span><i ></i> Grand Child</span> 
                        </li>
                    </ul>
                </li>
                <li>
                    <span><i ></i> Child</span> 
                    <ul>
                        <li>
                            <span><i ></i> Grand Child</span>
                        </li>
                        <li>
                            <span><i ></i> Grand Child</span> 
                            <ul>
                                <li>
                                    <span><i ></i> Great Grand Child</span> 
                                    <ul>
                                        <li>
                                            <span><i ></i> Great great Grand Child</span> 
                                        </li>
                                        <li>
                                            <span><i ></i> Great great Grand Child</span> 
                                        </li>
                                     </ul>
                                </li>
                                <li>
                                    <span><i ></i> Great Grand Child</span> 
                                </li>
                                <li>
                                    <span><i ></i> Great Grand Child</span> 
                                </li>
                            </ul>
                        </li>
                        <li>
                            <span><i ></i> Grand Child</span> 
                        </li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>
            <span><i ></i> Parent2</span> 
            <ul>
                <li>
                    <span><i ></i> Child</span> 
            </ul>
        </li>
    </ul>
</div>

Here's a JSFiddle link : https://jsfiddle.net/jhfrench/GpdgF/

CodePudding user response:

Just after the loading apply it the same effect of when it is visible.

$(function () {
    $('.tree li:has(ul)').addClass('parent_li').find(' > span').attr('title', 'Collapse this branch');
    //--------------------------------------------------
     var extra = $(".tree li.parent_li > span")
    .parent("li.parent_li")
    .find(" > ul > li");
  extra.hide("fast");
  //----------------------------------------------------  
    
    $('.tree li.parent_li > span').on('click', function (e) {
        var children = $(this).parent('li.parent_li').find(' > ul > li');
        if (children.is(":visible")) {
            children.hide('fast');
            $(this).attr('title', 'Expand this branch').find(' > i').addClass('icon-plus-sign').removeClass('icon-minus-sign');
        } else {
            children.show('fast');
            $(this).attr('title', 'Collapse this branch').find(' > i').addClass('icon-minus-sign').removeClass('icon-plus-sign');
        }
        e.stopPropagation();
    });
});
.tree {
    min-height:20px;
    padding:19px;
    margin-bottom:20px;
    background-color:#fbfbfb;
    border:1px solid #999;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)
}
.tree li {
    list-style-type:none;
    margin:0;
    padding:10px 5px 0 5px;
    position:relative
}
.tree li::before, .tree li::after {
    content:'';
    left:-20px;
    position:absolute;
    right:auto
}
.tree li::before {
    border-left:1px solid #999;
    bottom:50px;
    height:100%;
    top:0;
    width:1px
}
.tree li::after {
    border-top:1px solid #999;
    height:20px;
    top:25px;
    width:25px
}
.tree li span {
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid #999;
    border-radius:5px;
    display:inline-block;
    padding:3px 8px;
    text-decoration:none
}
.tree li.parent_li>span {
    cursor:pointer
}
.tree>ul>li::before, .tree>ul>li::after {
    border:0
}
.tree li:last-child::before {
    height:30px
}
.tree li.parent_li>span:hover, .tree li.parent_li>span:hover ul li span {
    background:#eee;
    border:1px solid #94a0b4;
    color:#000
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div >
    <ul>
        <li>
            <span><i ></i> Parent</span> <a href="">Goes somewhere</a>
            <ul>
                <li>
                    <span><i ></i> Child</span> <a href="">Goes somewhere</a>
                    <ul>
                        <li>
                            <span><i ></i> Grand Child</span> <a href="">Goes somewhere</a>
                        </li>
                    </ul>
                </li>
                <li>
                    <span><i ></i> Child</span> <a href="">Goes somewhere</a>
                    <ul>
                        <li>
                            <span><i ></i> Grand Child</span> <a href="">Goes somewhere</a>
                        </li>
                        <li>
                            <span><i ></i> Grand Child</span> <a href="">Goes somewhere</a>
                            <ul>
                                <li>
                                    <span><i ></i> Great Grand Child</span> <a href="">Goes somewhere</a>
                                    <ul>
                                        <li>
                                            <span><i ></i> Great great Grand Child</span> <a href="">Goes somewhere</a>
                                        </li>
                                        <li>
                                            <span><i ></i> Great great Grand Child</span> <a href="">Goes somewhere</a>
                                        </li>
                                     </ul>
                                </li>
                                <li>
                                    <span><i ></i> Great Grand Child</span> <a href="">Goes somewhere</a>
                                </li>
                                <li>
                                    <span><i ></i> Great Grand Child</span> <a href="">Goes somewhere</a>
                                </li>
                            </ul>
                        </li>
                        <li>
                            <span><i ></i> Grand Child</span> <a href="">Goes somewhere</a>
                        </li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>
            <span><i ></i> Parent2</span> <a href="">Goes somewhere</a>
            <ul>
                <li>
                    <span><i ></i> Child</span> <a href="">Goes somewhere</a>
                </li>
            </ul>
        </li>
    </ul>
</div>

<div >
    <ul>
        <li>
            <span><i ></i> 2013, Week 2</span>
            <ul>
                <li>
                    <span ><i ></i> Monday, January 7: 8.00 hours</span>
                    <ul>
                        <li>
                            <a href=""><span><i ></i> 8.00</span> &ndash; Changed CSS to accomodate...</a>
                        </li>
                    </ul>
                </li>
                <li>
                    <span ><i ></i> Tuesday, January 8: 8.00 hours</span>
                    <ul>
                        <li>
                            <span><i ></i> 6.00</span> &ndash; <a href="">Altered code...</a>
                        </li>
                        <li>
                            <span><i ></i> 2.00</span> &ndash; <a href="">Simplified our approach to...</a>
                        </li>
                    </ul>
                </li>
                <li>
                    <span ><i ></i> Wednesday, January 9: 6.00 hours</span>
                    <ul>
                        <li>
                            <a href=""><span><i ></i> 3.00</span> &ndash; Fixed bug caused by...</a>
                        </li>
                        <li>
                            <a href=""><span><i ></i> 3.00</span> &ndash; Comitting latest code to Git...</a>
                        </li>
                    </ul>
                </li>
                <li>
                    <span ><i ></i> Wednesday, January 9: 4.00 hours</span>
                    <ul>
                        <li>
                            <a href=""><span><i ></i> 2.00</span> &ndash; Create component that...</a>
                        </li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>
            <span><i ></i> 2013, Week 3</span>
            <ul>
                <li>
                    <span ><i ></i> Monday, January 14: 8.00 hours</span>
                    <ul>
                        <li>
                            <span><i ></i> 7.75</span> &ndash; <a href="">Writing documentation...</a>
                        </li>
                        <li>
                            <span><i ></i> 0.25</span> &ndash; <a href="">Reverting code back to...</a>
                        </li>
                    </ul>
                </li>
            </ul>
        </li>
    </ul>
</div>

  • Related