Gridpanel layout issue in IE8

  1. #1

    Gridpanel layout issue in IE8

    Hi folks,

    There seems to be a layout problem with the gridpanel/fitlayout in combination with tabs in IE8.
    When you have a tabbased frame (such as the examples), and you open multiple items from the tree on the left side (all after eachother, without waiting for the tab to be loaded), the fitlayout around the grid doesn't seem to fire off.

    result is as seen in attached image.

    When the browser is only resized for even 1px, it automatically goes into fit layout.

    Thanks for checking out.

    Kind regards,

    Reno
  2. #2

    RE: Gridpanel layout issue in IE8

    Hi,

    Can you post example which reproduce this problem? I tried to reproduce the layout that you have shown in the image but under IE8 I can't reproduce the problem
    Last edited by geoffrey.mcgill; Apr 26, 2016 at 12:55 AM.
  3. #3

    RE: Gridpanel layout issue in IE8

    It is a ViewPort with a BorderLayout and a Center with a Panel and within that panel a fitlayout and within this a gridpanel...

    Like this:
    <ext:ViewPort ID="ViewPortCountry" runat="server">
     <Body>
      <ext:BorderLayout ID="BorderLayoutCountry" runat="server"> 
       <Center>
        <ext:Panel ID="PanelCountry" runat="server" Title="Country" Icon="World">
         <Body>
          <ext:FitLayout ID="FitLayoutCountry" runat="server">
           <ext:GridPanel runat="server" ID="GridPanelCountry" StoreID="StoreCountry">
           </ext:GridPanel>
          </ext:FitLayout>
         </Body>
        </ext:Panel>
       </Center>
      </ext:BorderLayout>
     </Body>
    </ext:ViewPort>
    But if you wait for it to load it is no problem, but if you quickly after eachother open two menuitems from the left tree, than the two tabs are opened after eachother and the first loads behind the second. (You don't see the first loading ofcourse, you are on the second tab).

    The second tab loads just fine, when you then click on the first tab, you'll see he didn't apply the fitlayout.

    Kind regards,

    Reno
  4. #4

    RE: Gridpanel layout issue in IE8

    Online sample:

    Goto: http://coolite.scriberit.com/application.aspx

    On the left side open Settings, and then in the tree > Global Settings
    There you see two items: Technologies (1M) and Technologies (100K) (one sample with 1million records and one sample with 100.000 records)

    When you click on the first one, don't wait for it to load and click immediatly on the the second one, you'll see what I mean. The second one will be loaded fine, when you click on the first clicked tab, then it is not fitted.

    And the strangest is: when you just slightly resize the browser, it applies the fitlayout.

  5. #5

    RE: Gridpanel layout issue in IE8

    Hi,

    I reproduced the problem.
    At this moment I can suggest only one solution (not very nice but it is working)
    Add the following listener to the TabPanel in center region

    <Listeners>
      <TabChange Handler="if(tab.iframe &amp;&amp; tab.iframe.dom.contentWindow  &amp;&amp; tab.iframe.dom.contentwindow.ViewPortCountry){tab.iframe.dom.contentwindow.ViewPortCountry.doLayout();}" />
        </Listeners>
    Please note that iframe page must contain ViewPortCountry

    May be it is better define js function in iframe page (for example refreshLayout)

    function refreshLayout(){
         ViewPortCountry.doLayout();
    }
    And then TabChange listener will be check this function in iframe and call it

    <Listeners>
      <TabChange Handler="if(tab.iframe &amp;&amp; tab.iframe.dom.contentWindow  &amp;&amp; tab.iframe.dom.contentwindow.refreshLayout){tab.iframe.dom.contentwindow. refreshLayout();}" />
        </Listeners>

Similar Threads

  1. Replies: 15
    Last Post: Sep 19, 2017, 6:15 PM
  2. [CLOSED] layout issue when using RowLayout within column layout
    By Daly_AF in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 11, 2012, 2:40 PM
  3. [CLOSED] GridPanel Layout Issue
    By alliedwallet.com in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Oct 27, 2011, 6:53 PM
  4. Layout issue
    By sz_146 in forum 1.x Help
    Replies: 0
    Last Post: Jan 08, 2009, 11:14 AM
  5. [CLOSED] Issue with gridpanel rendering within a fit layout
    By Dave.Sanders in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 22, 2008, 6:42 PM

Posting Permissions