Dec 02, 2009, 1:49 PM
[CLOSED] active item bug with multiple gridpanels
Hi,
I am playing around with the card layout example and i think i have found a bug.
My example has 3 panels. Within each panel is a gridpanel. The first gridpanel looks ok, but when i then switch the activeitem to one of the other panels, the gridpanels dont look quite right eg only the rows with data have a white background color .
Lee
I am playing around with the card layout example and i think i have found a bug.
My example has 3 panels. Within each panel is a gridpanel. The first gridpanel looks ok, but when i then switch the activeitem to one of the other panels, the gridpanels dont look quite right eg only the rows with data have a white background color .
<ext:Panel ID="_wizardPanel" runat="server" BodyStyle="border:0px;" ActiveIndex="0">
<Body>
<ext:CardLayout ID="_wizardLayout" runat="server" DeferredRender="false">
<ext:Panel runat="server" Border="false" Header="false" ID="_panel1">
<Body>
<ext:Panel ID="_pnl001" runat="server" Frame="true">
<TopBar>
<ext:Toolbar ID="_toolbar1" runat="server">
<Items>
<ext:Label id="_label1" runat="server" Text="&nbsp;" Cls="gridpanel-topbar" />
<ext:ToolbarFill ID="_toolbarFill1" runat="server" />
</Items>
</ext:Toolbar>
</TopBar>
<Body>
<ext:FitLayout ID="_fitLayout1" runat="server">
<!-- Gridpanel goes here -->
</ext:FitLayout>
</Body>
</ext:Panel>
</Body>
</ext:Panel>
<ext:Panel runat="server" Border="false" Header="false" ID="_panel2">
<Body>
<ext:Panel ID="_pnl002" runat="server" Frame="true">
<TopBar>
<ext:Toolbar ID="_toolbar2" runat="server">
<Items>
<ext:Label id="_label2" runat="server" Text="&nbsp;" Cls="gridpanel-topbar" />
<ext:ToolbarFill ID="_toolbarFill2" runat="server" />
</Items>
</ext:Toolbar>
</TopBar>
<Body>
<ext:FitLayout ID="_fitLayout2" runat="server">
<!-- Gridpanel 2 goes here -->
</ext:FitLayout>
</Body>
</ext:Panel>
</Body>
</ext:Panel>
<ext:Panel runat="server" Border="false" Header="false" ID="_panel3">
<Body>
<ext:Panel ID="_pnl003" runat="server" Frame="true">
<TopBar>
<ext:Toolbar ID="_toolbar3" runat="server">
<Items>
<ext:Label id="_label3" runat="server" Text="&nbsp;" Cls="gridpanel-topbar" />
<ext:ToolbarFill ID="_toolbarFill3" runat="server" />
</Items>
</ext:Toolbar>
</TopBar>
<Body>
<ext:FitLayout ID="_fitLayout3" runat="server">
<!-- Gridpanel 3 goes here -->
</ext:FitLayout>
</Body>
</ext:Panel>
</Body>
</ext:Panel>
</ext:CardLayout>
</Body>
</ext:Panel>
Any help in resolving this would be greatly appreciatedLee