The tabcontainer tag has no wiki summary.
2
votes
8answers
23k views
How do I dynamically show and hide an entire TabContainer using DOJO?
DOJO seems to have some quirks here. I specifically need to have the TabContainer hidden when the page loads, but then become visible after the user clicks a button. The first thing I tried is setting ...
3
votes
2answers
1k views
AjaxToolkit: the last TabContainer on the page is focused on page load
I'm using more than one TabContainer on a page in an ASP.NET project and I noticed a really strange behavior: when the page is loaded the focus jumps to the last TabContainer on the page, causing it ...
1
vote
2answers
213 views
Auto Post back property not working with tab container
I am applying globalization on my hotel management system web portal and i am stuck with an issue.My issue is that i have a drop down list of two languages English and Spanish and i set ...
0
votes
1answer
2k views
Lazy loading tabs with user controls
I want to use lazy loading of tabs in AJAX tab container. I have implemented it. But the problem that I am facing is that when I click a button or fire any event in that user control, it is not fired; ...
3
votes
2answers
25k views
Setting active tab in ASP.NET Ajax TabContainer causes entire container to disappear
I have an ASP.NET page that uses the ASP.NET Ajax Control Toolkit TabContainer. In the Page_Load event, I am hiding some of the tabs based on the data given to the page. I then want to make one of the ...
2
votes
1answer
4k views
AJAX Tabcontainer inside formview not inserting values
I have a TabContainer inside a data bound FormView (to present the information by category ex: Client Bio data, health history, financial details...). The Update and Insert of the formView doesn't ...
4
votes
2answers
2k views
How to change Dojo TabContainer behaviour to simply open an external link instead of showing a ContentPane?
I am working with a TabContainer having several different ContentPane children. Each of them is equipped with a href param to fetch external AJAX content shown when a tab is being selected:
...
3
votes
6answers
5k views
ASP.NET - Ajax Control Toolkit - TabContainer always hidden
I used the following code to add TabContainer to page
<asp:TabContainer ID="TabContainer1" runat="server">
<asp:TabPanel runat="server" HeaderText="tab one" ID="TabPanel0">
...
1
vote
3answers
2k views
How to select a tab from TabCointainer (AjaxToolKit)
How can I select a tab programmatically of a TabContainer? and also how can I get the selected Tab?
1
vote
1answer
1k views
Linking to a specific tab / contentpane with Dojo
I want to navigate from a link on a html site to another where a TabContainer with two different tabs is located.
I have one tab selected by default (which I want to keep) in the destination html ...
0
votes
2answers
494 views
Ajax TabContainerTabPanels Break postbacks
Hey guys check this out ...
<asp:TabContainer ID="jkhgjkgh" runat="server">
<asp:TabPanel ID="jkkljhgh" runat="server" HeaderText="sdkl;fgjl;kgjdf">
<ContentTemplate>
...
0
votes
2answers
2k views
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 ...
0
votes
2answers
2k views
Remembering active tab on refresh of ASPX page
I've got an ASPX page set up that loads and displays dynamic data from a local SQLite database. Since the data is being written to the database from a separate C# application, I've set up my ASPX page ...