2
I have a form, which will be released from the header data and items. I know how to use the Bootstrap Tab, but in the items I would like to call another page so that it is easy to launch the items and not refresh in the whole window.
<ul class="nav nav-tabs" role="tablist" id="menu">
<li class="active"><a href="#dados" role="tab" data-toggle="tab">Dados</a></li>
<li><a href="<?php echo base_url().'cadastros/entradas/teste'; ?> " role="tab" data-toggle="tab">Itens</a></li>
<li><a href="#pagamento" role="tab" data-toggle="tab">Pagamento</a></li>
</ul>
<div class="tab-pane active" id="itens">
</div>
See if this helps you: http://answall.com/q/20779/7261
– user7261