Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
350
ultraWebTab on Internet explorer 9
posted

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

Parents
  • 37874
    posted

    Hi christopheEU,

    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.

Reply Children