Hi, we have a problem with RadTabStrip (we're using the MultiPage functionality) on Internet Explorer 7.
On Chrome and all other major browsers, the tabstrip looks perfectly fine. (Please see attached file chrome-banner.png)
Please see attached file ie7-banner.png to view how it works on IE7.
We suspect that while the CSS file is loading well, (as the tabstrip is laid out well on the page) telerik's javascript is not executing, which is why the tabs appear unstyled.
The code we are using is attached below. We're also registering a script manager in the master page.
On Chrome and all other major browsers, the tabstrip looks perfectly fine. (Please see attached file chrome-banner.png)
Please see attached file ie7-banner.png to view how it works on IE7.
We suspect that while the CSS file is loading well, (as the tabstrip is laid out well on the page) telerik's javascript is not executing, which is why the tabs appear unstyled.
The code we are using is attached below. We're also registering a script manager in the master page.
<div id="BannerManagementWrapper"> <telerik:RadTabStrip RegisterWithScriptManager="true" EnableEmbeddedBaseStylesheet="true" ID="BannerManagementTabStrip" Skin="Sunset" runat="server" MultiPageID="BannerManagementMultiPage" SelectedIndex="0"> <Tabs> <telerik:RadTab Text="Create a Banner" PageViewID="BannerCreationPage"> </telerik:RadTab> <telerik:RadTab Text="Manage Banners" PageViewID="BannerManagementPage"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage ID="BannerManagementMultiPage" runat="server" SelectedIndex="0"> <telerik:RadPageView runat="server" ID="BannerCreationPage" ClientIDMode="Static" CssClass="BannerTabPage"> <h2> Create a new Banner </h2> <div class="fieldContainer"> <fieldset> <div class="field"> <asp:Label ID="BannerTitleLabel" AssociatedControlID="BannerTitle" Text="Title:" CssClass="fieldLabel" runat="server" /> <asp:TextBox ID="BannerTitle" runat="server" MaxLength="250"></asp:TextBox> </div> <div class="field"> <asp:Label ID="BannerUrlLabel" AssociatedControlID="BannerUrl" Text="Url:" CssClass="fieldLabel" runat="server" /> <asp:TextBox ID="BannerUrl" runat="server" MaxLength="250"></asp:TextBox> </div> <div class="field"> <asp:Label ID="BannerImageUrlLabel" AssociatedControlID="BannerImageUrl" Text="Image Url:" CssClass="fieldLabel" runat="server" /> <asp:TextBox ID="BannerImageUrl" runat="server" MaxLength="250"></asp:TextBox> </div> </fieldset> </div> </telerik:RadPageView> <telerik:RadPageView runat="server" ID="BannerManagementPage" ClientIDMode="Static" CssClass="BannerTabPage"> <h2> Manage Existing Banners </h2> </telerik:RadPageView> </telerik:RadMultiPage> </div>