0
I’m using the twitter bootstrap library version 4.0 I managed to create a modal window but I would like to add tabs on it, I found some codes but I couldn’t implement them..
Keep going like I’m trying:
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Adicionar Ação</h4>
</div>
<div class="modal-body">
<ul class="nav nav-tabs">
<li class="active">
<a href="#home" data-toggle="tab">Home Tab</a>
</li>
<li>
<a href="#profile" data-toggle="tab">Profile Tab</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="home">Home Content</div>
<div class="tab-pane" id="profile">Profile Content</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
My model’s call is made like this:
$('#myModal'). modal('show');
Does anyone know how I can add tabs to my modal, or do you know any tutorial I can study? Thank you.
Edit, here’s an image of what I need: s.bootply.com/render/Qkuuimkqtc I want to put the tabs inside my modal as in the example, but at the moment it is getting like this: prntscr.com/djsekx
Look, version 4 is not yet stable. It may not have all the features ready. But these
TABS
shall be accessible as long as theMODAL
is open, right?– ShutUpMagda
Actually I want tabs inside the modal, as in this example: http://s.bootply.com/render/Qkuuimkqtc
– Fernando Muniz Erthal
That’s right. I get it. That’s it
JQuery
. I even think I have a model ready here that I’ve used... Already tried to pass the contents ofdivs
id="home"
andid="profile"
with ainclude
?– ShutUpMagda
I don’t have any content yet, my problem is that the tabs don’t even appear, my modal looks like this: http://prntscr.com/djsekx
– Fernando Muniz Erthal
Ah... right. The flaw is in the display...
– ShutUpMagda
This, sorry not to be clear.. I will ask an Edit in question..
– Fernando Muniz Erthal