I'm using the TabContainer/TabPanel components of the Ajax Control Toolkit.

I'd like to hide the tabs themselves and use a button elsewhere on the page to activate (bring to the front) one of the tabs without posting back to the server.

I can show and hide the tabs by grabbing their clientIDs and manually setting the visibility and display styles.

But is there a javascript function I can call to do this and perform whatever magic happens behind the scenes when I click an actual tab?

link|improve this question

I have worked with ACT before, although now I'm focused on CastleProject. You have access to all the "magic" behind TabContainer, I even proposed a patch to it sometime in the past. You may want to check the JS code generated by ACT, it is scary but easy to understand. – wtaniguchi Jul 24 '09 at 18:34
feedback

1 Answer

up vote 2 down vote accepted

Example:

var tab = $find(“tabContainer’s ClientID”);
tab.set_activeTabIndex(1); // active the second tab panel
tab.getFirstTab().set_enabled(false); // disable the first panel
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.