DHTMLX Tabbar

HI

I am using dhtmlx tabbar using iframe mode. I need to reload pages loaded in tabs. I useing

tabbar.setContentHref(“tab_id”,“address.php”); to reload the page.(i am specifying the same address to tab page that it has already).

Is this is correct way to reload? Would there be memry leakage issues?

Is this is correct way to reload?
you need to use
tabbar.forceLoad(“tab_id”,“address.php”);
it will reload tab in question without relation to its current state

>>Would there be memry leakage issues?
In iframes mode, each tab works as separate page, so reloading content will be equal to reloading a page - which must not produce any memory leaks