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
565
From UltraWebTab to WebTab
posted

Hi,

I have an UltraWebTab control that i need to migrate to a new WebTab component.
for most of the properties and attributes, i was able to find an equivalence, but for some of them, i'm stuck and i'd like some help, please.

Here is the markup that i have for the UltraWebTab :

<igtab:UltraWebTab ID="UWTGroupTab" runat="server" Height="545px" Width="930px" 
ImageDirectory="../Infragistics/Images/" BorderColor="#BBBBBB"
BorderStyle="Solid" BorderWidth="1px" BackColor="#D1E6FC" meta:resourcekey="UWTGroupTabResource1">
<HoverTabStyle CssClass="HoverTabStyle">
</HoverTabStyle>
<DefaultTabStyle Font-Bold="True" ForeColor="#505050" CssClass="DefaultTabStyle">
</DefaultTabStyle>
<RoundedImage LeftSideWidth="0" RightSideWidth="10" SelectedImage="../Images/Tab/TabImageSelected.gif"
  NormalImage="../Images/Tab/TabImageBack.gif" FillStyle="LeftMergedWithCenter"></RoundedImage>
<SelectedTabStyle Width="160px" Height="38px" Font-Bold="True" ForeColor="#131A2E">
  <Padding Bottom="3px" Left="10px" Top="3px" Right="0px"></Padding>
</SelectedTabStyle>
<Tabs>
<igtab:Tab Key="TAB_Interv_Link_Gener" meta:resourcekey="TAB_Interv_Link_Gener">
<Style CssClass="TabStyle"></Style>
<ContentTemplate>
<uc3:GeneralIntervLink ID="GeneralIntervLink1" runat="server" />

</ContentTemplate>
</igtab:Tab>
<igtab:Tab Key="TAB_Interv_Link_Group" meta:resourcekey="TAB_Interv_Link_Group">
<Style CssClass="TabStyle"/>
<ContentPane UserControlUrl="../Controls/Dict/GroupIntervLink.ascx">
</ContentPane>
</igtab:Tab>
<igtab:Tab Key="TAB_Interv_Link_Activation" meta:resourcekey="TAB_Interv_Link_Activation">
<Style CssClass="TabStyle"/>
<ContentPane UserControlUrl="../Controls/Dict/Activation.ascx">
</ContentPane>
</igtab:Tab>
</Tabs>
</igtab:UltraWebTab>

here is what i have so far :

<ig:WebTab ID="UWTGroupTab" runat="server" Height="545px" Width="930px" CssClasses-CssClass="CommonTabCtrl" >
<TabItemCssClasses CssClass="tab" ActiveCssClass="activeTab" SelectedCssClass="activeTab" HoverCssClass="activeTab" />
<Tabs>
<ig:ContentTabItem Key="TAB_Interv_Link_Gener" meta:resourcekey="TAB_Interv_Link_Gener">
<Template>
<uc3:GeneralIntervLink ID="GeneralIntervLink1" runat="server" />
</Template>
</ig:ContentTabItem>

<ig:ContentTabItem Key="TAB_Interv_Link_Group" meta:resourcekey="TAB_Interv_Link_Group" UserControlUrl="../Controls/Dict/GroupIntervLink.ascx">

</ig:ContentTabItem>

 <ig:ContentTabItem Key="TAB_Interv_Link_Activation" meta:resourcekey="TAB_Interv_Link_Activation" UserControlUrl="../Controls/Dict/Activation.ascx" />
</Tabs>
</ig:WebTab>

What about the RoundedImage elements and all the associated attributes ?
Did i used the correct attributes / elements ? what could be the equivalent markup ?

Thank you in advance for your help..

Best regards