2013-02-12 109 views
0

我有一個ComponentArt標籤條。我們公司最近將所有用戶都遷移到了IE8。出於某種原因,某些頁面上的標籤欄只會顯示第一個標籤頁。但在其他人看來,罰款。在所有頁面中,tabstrip的代碼實際上是相同的,節省了諸如選項卡名稱之類的東西。下面是一個頁面,只呈現第一個選項卡的例子:Componentart tabstrip只渲染第一個標籤

<ComponentArt:TabStrip ID="tsAdmin" runat="server" MultiPageId="EditUsers" CssClass="TopTabs" 
        DefaultItemLookId="DefaultTabLook" 
        DefaultSelectedItemLookId="SelectedTabLook" 
        DefaultDisabledItemLookId="DisabledTabLook" 
        DefaultGroupTabSpacing="1" 
        ImagesBaseUrl="tabstrip" 
        ScrollingEnabled="false" 
        ScrollLeftLookId="ScrollItem" 
        ScrollRightLookId="ScrollItem" 
        Width="100%" > 
       <Tabs> 
        <ComponentArt:TabStripTab runat="server" ID="tab0" Text="Tab 1"></ComponentArt:TabStripTab> 
        <ComponentArt:TabStripTab runat="server" ID="tab1" Text="Tab 2"></ComponentArt:TabStripTab> 
        <ComponentArt:TabStripTab runat="server" ID="tab2" Text="Tab 3"></ComponentArt:TabStripTab> 
        <ComponentArt:TabStripTab runat="server" ID="tab3" Text="Tab 4"></ComponentArt:TabStripTab> 
       </Tabs> 
       <ItemLooks> 
       <ComponentArt:ItemLook LookId="DefaultTabLook" CssClass="DefaultTab" HoverCssClass="DefaultTabHover" LabelPaddingLeft="10" LabelPaddingRight="10" LabelPaddingTop="5" LabelPaddingBottom="4" LeftIconUrl="tab_left_icon.gif" RightIconUrl="tab_right_icon.gif" HoverLeftIconUrl="hover_tab_left_icon.gif" HoverRightIconUrl="hover_tab_right_icon.gif" LeftIconWidth="3" LeftIconHeight="21" RightIconWidth="3" RightIconHeight="21" /> 
        <ComponentArt:ItemLook LookId="SelectedTabLook" CssClass="SelectedTab" LabelPaddingLeft="10" LabelPaddingRight="10" LabelPaddingTop="4" LabelPaddingBottom="4" LeftIconUrl="selected_tab_left_icon.gif" RightIconUrl="selected_tab_right_icon.gif" LeftIconWidth="3" LeftIconHeight="21" RightIconWidth="3" RightIconHeight="21" /> 
        <ComponentArt:ItemLook LookId="ScrollItem" CssClass="ScrollItem" HoverCssClass="ScrollItemHover" LabelPaddingLeft="5" LabelPaddingRight="5" LabelPaddingTop="0" LabelPaddingBottom="0" /> 
       </ItemLooks> 
      </ComponentArt:TabStrip> 

當我檢查網頁的源文件有一些產生的各種標籤的JavaScript引用,但是當我檢查源代碼螢火蟲只有第一個選項卡在HTML中有任何標記引用。在選項卡正確呈現的頁面上,所有選項卡都通過Firebug在HTML中可見。

回答

0

我不確定如何刪除此問題。原來問題出在一些我寫的javascript,而不是標籤條。