is it possible to switch tabs when the user interacts with another control outside of the tab? i.e. we have a web grid or hyperlinks or buttons. If the user hits one of these, we would like for the tab control to automatically switch to the corresponding tab to that control. Is this possible?
thank you,
You could make use of our Client Side Object Model and change the selected tab through JavaScript.
ultraTab.setSelectedIndex(1);
WebTab CSOM Overview:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/WebTab_CSOM.html
WebTab CSOM Members:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/WebTab_Object_CSOM.html
I have done this also,however I noticed this caused a postback on my page. Can I ensure this postback does not happen?, because if I just click on a tab with the mouse a postback does not seem to occur. David
thank you! i will look at those links...ugg..my javascript is horrible :)