I am using the 2010.3 controls and adding tabs programmatically on the client-side. I now have a need to "close" the tabs, but I am not able to find a method to do this. Is there a way to accomplish this, I can't do a postback for many reasons and need to be able to totally remove the tab client side.
Hello Michael,
I thought that you were using the UltraWebTab, because your post is in the UltraWebTab section in the forum.
Here is how you can close a tab of the WebTab:
var tab = $find("<%=WebTab1.ClientID %>");
tab._closeTab(tab.getTabAt(index));
Hope this helps.
Regards,
Lyuba
Developer Support Engineer
Infragistics
www.infragistics.com/support
Lyuba,
THANK YOU!
Sorry for the confusion, I did not see a separate forum for "WebTab" and in the description of this forum it said to use this to discuss WebTab, thus the post being put here.