When click on an object in a web tab (button, link button, something that makes a post back), you can no longer navigate through the tabs.
I am missing something and I cant seem to figure out what it is. We have an existing application which uses microsoft updatepanel and we load usercontrols into it. One of the new usercontrols we are creating has the UltraWebTab. For simplicity i have created an empty ajax asp.net 2.0 project as a test.
Open up the form
drag a scriptmanager to the form.
Drag a updatepanel to the form (again this is a prebuilt app that uses microsofts update panel CAN NOT USE infragistics)
Drop a ultraweb tab onto the updatepanel and create 3 tabs and a button on each tab
run the app
Click on a button in one of the tabs
After clicking the button you can no longer navigate the tabs, its as if they do not exist anymore? I do not understand what is missing. Any help/direction would be appriciated.
Kos
I'm using UltraWebTab control in a 3.5 web app using the UpdatePanel. Everytime I go from one tab to the next, I get a javascript error:
if
(!this._postBackSettings.async) from one of Microsoft's javascripts.
(crappy code from microsoft, because in this case _postBackSettings is null)
If I set the focus on one of the tab content's form controls, I won't get the error. Otherwise I do. Annoying problem. Any fix on this specific issue?
I am having the same problem with updatepanel and ultrawebtab. I have a ultratab control has a ultrawebgrid and updatepanel has a button. If I click the button on the updatepanel it sholud say “Please wait…” until it fills the data for the ultragrid. But I can no longer navigate the tabs once I click the button on the updatepanel. The Ultratab is not even in the updatepanel at all. I am using infratistics 2008 and VS 2005. Please help me out to fix this problem. Thanks in advance. Saravanan
I'd recommend you try with the latest hotfix for 2006 volume 3. You can get hotfixes from the "view my" menu on www.infragistics.com
Afraid I get the same results. The tab stops working after I click the button. I believe it has to do with the version that I am running. Here is my complete aspx file including the version of web tab that i am using. I believe its 2006 v3
<%@ Register Assembly="Infragistics2.WebUI.UltraWebTab.v6.3, Version=6.3.20063.53, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.WebUI.UltraWebTab" TagPrefix="igtab" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<ContentTemplate>
<Tabs><igtab:Tab></igtab:Tab><igtab:Tab><ContentPane><asp:Button ID="Button1" Text="try me" runat="server" /></ContentPane></igtab:Tab><igtab:Tab></igtab:Tab></Tabs>
</igtab:UltraWebTab>
</asp:UpdatePanel>
</div>
</body>
</html>
Hi Kos,
That sounds strange indeed! I tried it out, but couldn't reproduce the problem. Here's what I did:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<igtab:UltraWebTab ID="UltraWebTab1" runat="server">
<Tabs><igtab:Tab></igtab:Tab><igtab:Tab><ContentPane><asp:Button Text="try me" runat="server" /></ContentPane></igtab:Tab><igtab:Tab></igtab:Tab></Tabs>
</ContentTemplate>
</form>
Give that a whirl and see if the problem still exists for you, if it does we'll have to start comparing versions