EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: poeziafree on December 04, 2022, 03:16:25 AM



Title: Fail to Update Tab Panel Footer
Post by: poeziafree on December 04, 2022, 03:16:25 AM
Hello,

How can I update the tab footer?
Setting type to all updates only header and body.


Title: Re: Fail to Update Tab Panel Footer
Post by: jarry on December 04, 2022, 07:25:09 PM
Retrieve the footer panel and you will be able to do anything on it.
Code:
var p = $('#tt').tabs('getTab',0);  // get the tab panel
var f = p.panel('footer');  // get the footer
f.html(...);