[CLOSED] Collapsible Panel problem

  1. #1

    [CLOSED] Collapsible Panel problem

    Hi,
    Title bar of panel is repeating when double clicked on the title bar to expand the collapsed panel, in side the borderLayout. Also the collapsible panel overlaps the content of another panel below it.

       <ext:Viewport runat="server" ID="ttt" Layout="BorderLayout">
            <Items>
                <ext:Panel runat="server" Region="West" Width="200" Title="left panel">
                    <Items>
                    </Items>
                </ext:Panel>
                <ext:Panel runat="server" Region="Center" Layout="BorderLayout" Title="right panel">
                <Items>
                   <ext:Panel runat="server" Region="North" Height="200" Collapsible="true" Title="test panel">
                   <Items>
                   </Items>
                   </ext:Panel> 
                   <ext:Panel runat="server" Region="Center" Title="bottom panel">
                    <Content>
                        <h3>Content</h3>
                    </Content>
                   </ext:Panel>
                   
                </Items>
                </ext:Panel>
                
            </Items>
        </ext:Viewport>
    Attached Thumbnails Click image for larger version. 

Name:	1st.png 
Views:	172 
Size:	7.7 KB 
ID:	4256   Click image for larger version. 

Name:	2nd_with_problem.png 
Views:	171 
Size:	7.3 KB 
ID:	4255  
    Last edited by Daniil; May 23, 2012 at 8:37 PM. Reason: [CLOSED]
  2. #2
    I cannot reproduce the issue, here is my test case (tested in IE 9, Chrome and FF)

    <%@ Page Language="C#" %>
    <%@ Register Assembly="Ext.Net" TagPrefix="ext" Namespace="Ext.Net" %>
    
    
    <!DOCTYPE html>
    
    
    <html>
    <head runat="server">
        <title>Ext.NET Example</title>
    </head>
    <body>
    <form runat="server">
        <ext:ResourceManager runat="server" />
    
    
        <ext:Viewport runat="server" ID="ttt" Layout="BorderLayout">
         <Items>
             <ext:Panel runat="server" Region="West" Width="200" Title="left panel">
                 <Items>
                 </Items>
             </ext:Panel>
             <ext:Panel runat="server" Region="Center" Layout="BorderLayout" Title="right panel">
             <Items>
                <ext:Panel runat="server" Region="North" Height="200" Collapsible="true" Title="test panel">
                <Items>
                </Items>
                </ext:Panel> 
                <ext:Panel runat="server" Region="Center" Title="bottom panel">
                 <Content>
                     <h3>Content</h3>
                 </Content>
                </ext:Panel>
                 
             </Items>
             </ext:Panel>
              
         </Items>
     </ext:Viewport>
    </form>
    </body>
    </html>
    Try to update from SVN first
  3. #3
    Hi Vladimir,
    I'm still having the same problem, firstly you can collapse the panel then, try to expand it by using single click on the title bar of panel instead of using rightmost collapsible button.
  4. #4
    It is not bug, it is floatable behaviour of collapsed region.
    true to allow clicking a collapsed Panel's placeholder to display the Panel floated above the layout,
    false to force the user to fully expand a collapsed region by clicking the expand button to see it again.
    You can disbale it, set Floatable="false" for region

Similar Threads

  1. [CLOSED] Problem with collapsible panel.
    By feanor91 in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: Jun 13, 2012, 1:33 PM
  2. [CLOSED] Why Collapsible panel not disabled while loading?
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: May 02, 2012, 3:13 PM
  3. Viewport Default Collapsible Panel
    By msutton761 in forum 1.x Help
    Replies: 2
    Last Post: Nov 12, 2011, 11:33 PM
  4. [CLOSED] Collapsible Panel title not showing after collapse.
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 8
    Last Post: May 11, 2011, 5:02 PM
  5. Replies: 1
    Last Post: Sep 16, 2008, 10:45 AM

Tags for this Thread

Posting Permissions