Hi,
we use infragistic asp net controls on our web site (infragistic 4.0).
On a page we have a ultrawebtab with two tabs.
We user open the page the first tab is active and the second is unactive.
When a user click on checkbox we active the second tab with a javascript function
that's work on IE 8 but on IE 9 that doesn't work !!!
Any idea ?
javascipt method for active or unactive tab
ultraTab.Tabs[index + 1].setEnabled(true);ultraTab.Tabs[index + 1].setEnabled(false);
Thanks for your time and your explication , i'm a beginner
Christophe
sorry but i was on day on unitl this day.
the problem is solve and the problem didin't come from infragistic but come to our code !!!!
Sorry i think this problem come to the control ultrawebTab
sorry
Hi christopheEU,
If you need any further assistance with the matter please do not hesitate to ask.
If you want to change the active tab you could use something like the following function:
function checkChanged() {
var tab = igtab_getTabById("UltraWebTab1");
tab.setSelectedIndex(1);
}
Also, you could use tab.setSelectedTab(tab.Tabs[1]).
Please let me know if you have any questions.