3.2.0

Tabs refresh event

Is there a way of linking in to the aw.ui.tabs refresh event? I need to change the style of the text on some of the tabs if the tabset is every refreshed. I can only see 3 on___changed and 1 on___changing event. What I would like is an onRefreshed event handler.

Thanks

Chris
Chris Pamplin
July 27,
You can rewrite refresh method if you wish -

var old_refresh = obj.refresh;

obj.refresh = function(){
// do your stuff here
old_refresh.call(this);
}
Alex (ActiveWidgets)
August 6,

This topic is archived.

See also:


Back to support forum