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
Hi Kos,
That sounds strange indeed! I tried it out, but couldn't reproduce the problem. Here's what I did:
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<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>
</asp:UpdatePanel>
</div>
</form>
Give that a whirl and see if the problem still exists for you, if it does we'll have to start comparing versions
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>
<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>
</body>
</html>