tabs.onCurrentItemChanging = function(i)?
I am using AW.UI.Tabs. I need to trigger an action when the focus LEAVE from the tabs[0]. I tried as following:
tabs.onCurrentItemChanging = function(i){
if (i==0) alert("leaving tab 0?");
}
However, the event is triggered when the focus ENTER into the tab[0], instead of LEAVE from tab[0]. How can I get the parameter which reflact the "leaving" tabs item?
Do you have any onblur event handler?
Thanks,
tabs.onCurrentItemChanging = function(i){
if (i==0) alert("leaving tab 0?");
}
However, the event is triggered when the focus ENTER into the tab[0], instead of LEAVE from tab[0]. How can I get the parameter which reflact the "leaving" tabs item?
Do you have any onblur event handler?
Thanks,
mrhsh
May 12,