[CLOSED] Splitter In Column Layout IE7 Issue

  1. #1

    [CLOSED] Splitter In Column Layout IE7 Issue

    by using the same code
    http://forums.ext.net/showthread.php...layout-IE6-bug

    when loaded in IE7, and press click me and try to move the splitter
    the direction are like flipped
    Last edited by Daniil; Jan 18, 2012 at 5:42 AM. Reason: [CLOSED]
  2. #2
    Hi,

    Please see the post #2 in the thread you have referred.
  3. #3
    Reproduced and investigating.
  4. #4
    Please always simplify samples before posting.

    Your initial sample might be simplified to the one below, but still reproduces the problem.

    Example
    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <script runat="server">
        [DirectMethod]
        public void Expand()
        {
            this.Panel1.Expand();
        }
    </script>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Ext.NET Example</title>
    </head>
    <body>
        <form runat="server">
        <ext:ResourceManager runat="server" />
        <ext:Viewport runat="server" Layout="FitLayout">
            <Items>
                <ext:Panel runat="server" Region="Center" Layout="AccordionLayout">
                    <Items>
                        <ext:Panel runat="server">
                            <Items>
                                <ext:Button runat="server" Text="Click me to expand the next panel">
                                    <Listeners>
                                        <Click Handler="Ext.net.DirectMethods.Expand();" />
                                    </Listeners>
                                </ext:Button>
                            </Items>
                        </ext:Panel>
                        <ext:Panel 
                            ID="Panel1" 
                            runat="server" 
                            HideMode="Offsets" 
                            Layout="ColumnLayout">
                            <LayoutConfig>
                                <ext:ColumnLayoutConfig Split="true" />
                            </LayoutConfig>
                            <Items>
                                <ext:Container runat="server" ColumnWidth="0.5" Layout="BorderLayout">
                                    <Items>
                                        <ext:Panel runat="server" Region="Center" Html="Left" />
                                    </Items>
                                </ext:Container>
                                <ext:Container runat="server" ColumnWidth="0.5" Layout="BorderLayout">
                                    <Items>
                                        <ext:Panel runat="server" Region="Center" Html="Right" />
                                    </Items>
                                </ext:Container>
                            </Items>
                        </ext:Panel>
                    </Items>
                </ext:Panel>
            </Items>
        </ext:Viewport>
        </form>
    </body>
    </html>
    Removing HideMode="Offsets" of the Panel1 fixes the problem.
    Last edited by Daniil; Jan 16, 2012 at 4:24 PM.
  5. #5
    Thanks Daniil it work.

    we'll work on more and more simplified sample next time.
  6. #6
    Quote Originally Posted by nhg_itd View Post
    we'll work on more and more simplified sample next time.
    Thank you.

Similar Threads

  1. [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
  2. [CLOSED] ColumnLayoutConfig splitter moving issue
    By bakardi in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Jan 25, 2012, 6:43 PM
  3. RowLayout Splitter Issue
    By Manoj Kumar P in forum 1.x Help
    Replies: 1
    Last Post: Feb 21, 2011, 8:06 AM
  4. [CLOSED] [1.0] Issue with Viewport/Row/Column Layout in Chrome & Safari
    By chrisbranson in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 24, 2010, 2:55 PM
  5. Performance Issue - Splitter/Layout Control
    By sairashid in forum 1.x Help
    Replies: 4
    Last Post: Sep 15, 2009, 2:31 PM

Posting Permissions