-
1 Feb 2008 5:17 PM #1
jumping to another tab
jumping to another tab
hi,
how can I create link in a grid (the grid is inside TabPanel) which when clicked will transffer me to another tab.. let say in the grid I have summary info and when I clicked i want to show in the other tab the full details i.e. the info in this detail tab will also be generated on the fly so I have to make a request and get back json-data..
thanx
-
1 Feb 2008 6:42 PM #2
I'm not doing it right, but it works for me.
I id and tabid all my tab items.
so for my comments tab, i have the properties
So I find the TabPanel, and then I activate the item tab.Code:id: 'tabTasksComments', tabid: 'tabTasksComments'
Code:Ext.getCmp('taskingTabPanel').activate('tabTasksComments');
-
2 Feb 2008 12:18 AM #3Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
Add a cellclick eventhandler to the grid. In this handler you can access the current record, change the active tab and load the appropriate data.


Reply With Quote