|
Title: easyui-tabs ( refresh inner page ) Post by: ehussain on September 29, 2014, 04:17:58 AM <div id="mytab" class="easyui-tabs" data-options="tools:'#tab-tools'" style="width:1350px;height:780px; font-family:Eras Demi ITC;">
<div title="Advertise" data-options="href:'page1.php',closable:false"></div> <div title="Advertise via SMS" data-options="href:'page2.php',closable:false"></div> <div title="Campaign Response" data-options="href:'page3.php',closable:false"></div> </div> How to refresh or reload inner page click on any tab? Ejaz Title: Re: easyui-tabs ( refresh inner page ) Post by: jarry on September 29, 2014, 07:24:03 AM To refresh a tab panel, call 'getTab' method to get the specified tab panel and then call 'refresh' method on this panel. The code below shows how to refresh page content of the first tab panel.
Code: var p = $('#tt').tabs('getTab', 0); // get the first tab panel |