Disclaimers first : 1) First question ever, I hope I'm doing this right, apologies if it's not the case. 2) English is not my native language, so sorry for any mistakes. 3) Made a search and couldn't find an answer.
Trying to explain in words will mean many words while a bootply can say it all :
http://www.bootply.com/EBIMFQ5jEC
Basically, what I want is almost working except for this : I would like that clicking on "title 3" for instance (after you've clicked on "title 1" or "title 2") hides the "first/second column(s)" so that the "third column" is the only one shown (and vice-versa of course). I hope this is clear.
I tried a few things with data-parent (such as this: http://www.bootply.com/pgoT2IPG8D which has data-parent="#collapse1"
added for the first three buttons) but couldn't achieve anything...
Thanks in advance for any help !
To get what you want you will indeed have to set the `data-parent', but also notice that this also require a '.panel' class. From the docs:
demo: http://www.bootply.com/qhs4dQbFZK
So you should wrap you collapsible item in a
.panel
class (or change the plugin). See also: https://github.com/twbs/bootstrap/issues/15341Then a collapsible item will look that shown below:
Your button should get a
data-parent
attribute:And your items should be wrapped inside the id set before (
#menurow
):Notice that the
.panel
class also set some style rules, which should be overrules (undo) for your situation, for instance:.panel {margin-bottom: 0;}