Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
155
Design time problem
posted

I'm adding a tab control and have to manually add the child tabs. If I open the designer it then adds the tab yet again with a different assembly pathing name.

As in, I start with this (ending tags omitted for readability);

<igtab:UltraWebTab ID="uwtPeople" runat="server" BorderColor="#949878"

BorderStyle="Solid" BorderWidth="1px" ThreeDEffect="False">

<tabs>

<igtab:tab key="Buyer" text="Buyer"></igtab:tab>

After I open the designer I get;

<igtab:UltraWebTab ID="uwtPeople" runat="server" BorderColor="#949878"

BorderStyle="Solid" BorderWidth="1px" ThreeDEffect="False">

<tabs>

<igtab:tab key="Buyer" text="Buyer"></igtab:tab>

<Infragistics.WebUI.UltraWebTab.Tab Key="Buyer" Text="Buyer"></Infragistics.WebUI.UltraWebTab.Tab>

 

I also get this when I initially add the control

<Infragistics.WebUI.UltraWebTab.Tab Key="Buyer" Text="Buyer"></Infragistics.WebUI.UltraWebTab.Tab>

Anyone got any ideas?