PDA

View Full Version : TabPanel



johnsons
5 Oct 2007, 8:04 AM
Without any ajax processes, can I direct the browser to a separate page on the site when tab Test1 is clicked?



var tabs = new Ext.TabPanel('mainTabs');
tabs.resizeTabs = false;
var cTab = tabs.addTab("Test1", "Test1");
cTab.setTooltip('Test1');


Thanks

evant
5 Oct 2007, 3:47 PM
The other options would be
a) Use your server side language to embed the content
b) Use an iframe

johnsons
5 Oct 2007, 4:28 PM
Perhaps my question was not clear, all I am seeking to do is to direct the browser to a different page on the tab click (on.activiate) i.e., top.location = 'somepage.htm'. Thanks