Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > Disabling Tabs and tabstrip client-side from within User Control
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Disabling Tabs and tabstrip client-side from within User Control

Feed from this thread
  • Vimukta Talwar avatar

    Posted on Jan 13, 2011 (permalink)

    We are using Tabstrip with user controls inside each tab. We have a requirement to client-side disable tabstrip on click of a button from inside the last tab (user control).
    This is to prevent the user from clicking any tabs once Submit button is clicked.
    Our Submit action takes around 15 secs.

    We wrote following code, but it just grays out the tab strip. The user is still able to click on tabs and it takes them to the tab after Submit event is finished-

    var tabStrip = document.getElementById('rtsWarranty');
    tabStrip.disabled = true;

    Thanks,
    Vimukta

  • Kate Kate admin's avatar

    Posted on Jan 17, 2011 (permalink)

    Hello Vimukta Talwar,

    You are disabling only the HTML element and you need to disable the whole TabStrip control. So you can use $find to get the needed reference. Here is a help article that gives some examples:
    http://www.telerik.com/help/aspnet-ajax/tab_clientsideradtabstrip.html.

    I hope this helps.

    Regards,
    Katerina
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > Disabling Tabs and tabstrip client-side from within User Control