Hi all,
I need your help.
I'm using ext, but it's the first time.
I have a tabPanel which contain 2 tabs defined in tabPanel's
properties.
this.initialsTab = new Ext.TabPanel({
resizeTabs :true,
activeTab : 0,
height:500,
items : [{
id:'myHomeTab',
title : 'MyHome'
},
{
title : 'Alis',
id:'alisTab',
items: this.alisPanel
}]
});
Now I would like attach an event to the tab 'alisTab' (the second tab
defined).
How can I do it from an external javascript function? I mean, I'm
not beable to refer the tab.
initialsTab.items = Object , but I need 'alisTab' object. I would like
a code similar to the follow:
(alisTab).on('click'.....);
Thanks in advance.
Please help me!
Sorry for my bad English
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---