hello, i want to ask something about searching in render partial.
in my form using tabs
<div class="panel-body">
<ul class="nav nav-tabs">
<li class="active"><a href="#UA" data-toggle="tab">User Agent</a></li>
<li><a href="#Ext" data-toggle="tab">User Agent Extension Data</a></li>
<li><a href="#Transform" data-toggle="tab">User Agent Transformation</a></li>
<li><a href="#Codec" data-toggle="tab">User Agent Codec</a></li>
<li><a href="#Content_type" data-toggle="tab">User Agent Content Type</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="UA">
<br>
<?php echo $this->renderPartial('_formEdit', array('model'=>$model)); ?>
</div>
<div class="tab-pane" id="Ext">
<?php echo $this->renderPartial('/uaExtData/admin',array('model2'=>$model2)); ?>
</div>
<div class="tab-pane" id="Transform">
<?php echo $this->renderPartial('/uaTransform/admin',array('model3'=>$model3)); ?>
</div>
<div class="tab-pane" id="Codec">
<?php echo $this->renderPartial('/uaCodec/admin',array('model4'=>$model4)); ?>
</div>
<div class="tab-pane" id="Content_type">
<?php echo $this->renderPartial('/uaContentType/admin',array('model5'=>$model5));?>
</div>
</div>
</div>
and it show the grid in everytab, but the advanced search is not working
i already try to add true in the renderPartial.
when i add true but it only working on last tab, the others tab advanced search is not working.
can someone help me hpt to make this advanced search work in every tab based on their model? thanks =)
note: i already used cjuitabs, but the result still the same, just one tabs advanced is working the others is not working too.