0
I have two tabs, one that shows my macros together and one to show the sent ones.
The macros together are already selected by default and in the Page Load
has the method that loads the corresponding data from it
When I click on the sent macros tab, my method is not even executed. How do I call a method inside li ?
What can it be?
<ul class="nav nav-tabs" role="tablist" id="myTab">
<li class="active"><a href="#home" role="tab" data-toggle="tab">Macros juntas</a></li>
<li><a href ="#enviadas" role="tab" data-toggle="tab" runat="server" onserverclick="Carregamacrosenviadas">Macros enviadas</a></li>
</ul>
The plugin for tabs may be cancelling the method
onserverclick
. What the plugin what are you using for tabs? What code is present in the functionCarregamacrosenviadas
?– Zuul