tabcontainer

Ajax Control Toolkit custom Tab extender to close tabs client-side

I'm attempting to write an AJAX control extender that can modify an AJAX Control Toolkit TabPanel so that the TabPanel's header has an image after the text that, when clicked, hides the tab header using client-side script (without a postback). I would also like to be able to specify an onClientClose function that is also called when a ta...

AJAXControlToolkit TabContainer - bug in dynamically adding/removing tabs?

I am using AjaxControlToolkit version 4.1.40412.0, .NET 4.0, VS2010 Using the TabContainer control I want to add/remove tabs dynamically, but it looks like all of my dynamic changes are not persistent. Here is my scenario: I start with a tabcontainer with 1 tabpanel (hardcoded, i.e. added at design time), then dynamically I add more tab...

AjaxControlToolkit TabContainer HeaderTemplate

Hi, I am trying to set a ITemPlate class to the HeaderTemplate of a specific TabPanel of TabContainer ( AjaxControlTollKit). However, the InstantiateIn method is not firing at all. Please note that in any tab there is NO gridview. Code extract: // In the SharePoint webpart class where tabs are getting created tbcDynamic.Tabs[0].Head...

What is the best way to include content within an AJAX TabContainer?

I didn't want to have a ton of code on one page, but to keep the code modular and simple. So in my TabContainer I have the following where each tab refers to a web page and my code is inside each web page. My TabContainer itself is inside the default.aspx page. <asp:TabContainer ID="tabTOL" runat="server" ActiveTabIndex="0" CssCla...

asp.net ajax container takes eons to load

Hi, I'm using 2 asp.net ajax tab container for a mostly intranet used asp.net application in a single screen. Thing is, eventually it might have to be accesed through internet and it's taking 15-17 seconds to load and 35-40 seconds after a Response.Redirect() when it's accesed through internet. In intranet it works alright. I'm using...

TabContainer Problems

Having a strange issue with the TabContainer in the AJAX Toolkit. We have several views into a customer record system that we have built as ASP.net controls. These controls use UpdatePanels to load data asynchronously. We use jQuery and jquery.ui to place these controls in separate tabs on a single page. Which all works swimmingly. ...

How do I stop dijit.layout.TabContainer from switching tabs, based on the state of the data in the tab?

I know how to disable tabs, etc. This is about preventing an onclick event from switching to an active tab, if the user hasn't met a condition. Is there a function that I can connect to that will pass me an event I can use dojo.stopEvent() on? ...

ASP.NET Maintaining ActiveTabIndex on Postback within TabContainer

This probably has been asked many times before but I was wondering how to maintain the ActiveTabIndex of an AjaxControlToolKit TabContainer. The only way I can think of achieving such a thing is to store the ActiveTabIndex in the session and checking for this on postback. Are there any other solutions to solve this problem? ...