Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The bootstrap from twitter (and its jQuery implementation) looks really good, and has a lot of features ready for implementations right out of the box.

I wanted to know if there is a implementation of a tree (something like dynatree) for the bootstrap. Kindly help me out here.

Thanks

share|improve this question

6 Answers

Can you believe that the treeview on the image below does not use any JavaScript, but relies only on CSS3? Check out this CSS3 TreeView, which is good with Twitter BootStrap:

TreeView

You can get more info about this here http://acidmartin.wordpress.com/2011/09/26/css3-treevew-no-javascript/.

share|improve this answer
wow... this is a good one... i'll have to look into this... thanks... – Harsh Jun 24 '12 at 8:41
@Harsh Sure, its bootstrap ready and please accept my answer if it is helpful. :) PS: We are using it. :) – Praveen Kumar Jun 24 '12 at 8:52
The solution seems good, but there are a few features, which we wanted and are not supplied in this version, such as branch highlighting, etc. But anyways, it is a very good example of how to do the tree styling – Harsh Aug 12 '12 at 11:56
1  
found a nice example thecssninja.com/demo/css_tree – spiderdevil Mar 22 at 19:33
up vote 15 down vote accepted

For those still searching for a tree with CSS3, this is a fantastic piece of code I found on the net:

http://thecodeplayer.com/walkthrough/css3-family-tree

PS: apart from the code, I also like the way the site shows it in action... really innovative.

share|improve this answer
5  
This is not really anything like the type of tree you suggested in your question. I believe Praveen Kumar should be awarded with his answer – Blowsie Jan 17 at 8:58
2  
I was looking for a tree like the first one, saw this answer, and decided to use this instead. Funny how inspiration can change a solution! – Eric Jan 19 at 0:13
@Eric : same here :D – Harsh Jan 20 at 18:25

If someone wants vertical version of the treeview from Harsh's answer, you can save some time:

http://jsfiddle.net/Fh47n/

.tree li {
    margin: 0px 0;

    list-style-type: none;
    position: relative;
    padding: 20px 5px 0px 5px;
}

.tree li::before{
    content: '';
    position: absolute; 
    top: 0;
    width: 1px; 
    height: 100%;
    right: auto; 
    left: -20px;
    border-left: 1px solid #ccc;
    bottom: 50px;
}
.tree li::after{
    content: '';
    position: absolute; 
    top: 30px; 
    width: 25px; 
    height: 20px;
    right: auto; 
    left: -20px;
    border-top: 1px solid #ccc;
}
.tree li a{
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 11px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

/*Remove connectors before root*/
.tree > ul > li::before, .tree > ul > li::after{
    border: 0;
}
/*Remove connectors after last child*/
.tree li:last-child::before{ 
      height: 30px;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
    background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}
/*Connector styles on hover*/
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before{
    border-color:  #94a0b4;
}
share|improve this answer

Building on Vitaliy's CSS and Mehmet's jQuery, I changed the a tags to span tags and incorporated some Glyphicons and badging into my take on a Bootstrap tree widget.

For extra credit, here is the LESS source to generate that CSS:

@import "../../../external/bootstrap/less/bootstrap.less"; /* substitute your path to the bootstrap.less file */
@import "../../../external/bootstrap/less/responsive.less"; /* optional; substitute your path to the responsive.less file */

/* collapsable tree */

.tree {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: lighten(@grayLighter, 5%);
    border: 1px solid @grayLight;
    .border-radius(@baseBorderRadius);
    .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
    li {
        list-style-type: none;
        margin: 0px 0;
        padding: 10px 5px 0px 5px;
        position: relative;
    }
    li::before, li::after {
        content:'';
        left: -20px;
        position: absolute;
        right: auto;
    }
    li::before {
        border-left: 1px solid @grayLight;
        bottom: 50px;
        height: 100%;
        top: 0;
        width: 1px;
    }
    li::after {
        border-top: 1px solid @grayLight;
        height: 20px;
        top: 25px;
        width: 25px;
    }
    li span {
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border: 1px solid @grayLight;
        border-radius: 5px;
        display: inline-block;
        padding: 3px 8px;
        text-decoration: none;
    }
    li.parent_li > span {
        cursor: pointer;
    }
    /*Remove connectors before root*/
    > ul > li::before, > ul > li::after {
        border: 0;
    }
    /*Remove connectors after last child*/
    li:last-child::before {
        height: 30px;
    }
    /*Time for some hover effects*/
    li.parent_li > span:hover, li.parent_li > span:hover+ul li span {
        background: @grayLighter;
        border: 1px solid #94a0b4;
        color: #000;
    }
}
share|improve this answer
well done. Except, of course, the odd behaviour of li children of .parent_li who lose their background color and become gray when their parent is hovered over (in your second tree). – Harsh May 30 at 15:53
Thanks @Harsh. The hover behavior you think odd follows Vitaliy's programming to give the user a visual indicator of which nodes will be collapsed. – Jeromy French May 30 at 17:55
What is the license of this code? I'd like to use it in my project! – Nathan Moos Jun 2 at 3:22
@NathanMoos: Code can't get more public than the content contributed to this site. I'll even create a GitHub project for this tree if it proves sufficiently popular. Good luck! – Jeromy French Jun 2 at 18:12
@JeromyFrench This tree has a very nice, smooth experience. Exactly what I was after when I searched. Good work. – Nathan Moos Jun 2 at 22:00
show 1 more comment

Another great Treeview jquery plugin is http://www.jstree.com/

For an advance view you should check jquery-treetable
http://ludo.cubicphuse.nl/jquery-plugins/treeTable/doc/

share|improve this answer
According to the site, it's not being supported any more since April 2010 – levelnis Feb 18 at 10:27
oh its a shame that it's not being supported... looks good though. – Harsh Feb 18 at 12:07
1  
Hi, both libraries are up to date and are supported – Gal Margalit Feb 18 at 14:05

If someone wants expandable/collapsible version of the treeview from Vitaliy Bychik's answer, you can save some time :)

http://jsfiddle.net/mehmetatas/fXzHS/2/

$(function () {
    $('.tree li').hide();
    $('.tree li:first').show();
    $('.tree li').on('click', function (e) {
        var children = $(this).find('> ul > li');
        if (children.is(":visible")) children.hide('fast');
        else children.show('fast');
        e.stopPropagation();
    });
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.