[CLOSED] A question about the viewport

  1. #1

    [CLOSED] A question about the viewport

    You can move bottom the button that collapses?
    (See attached picture)
    Attached Thumbnails Click image for larger version. 

Name:	Cattura.jpg 
Views:	68 
Size:	98.7 KB 
ID:	1714  
    Last edited by Daniil; Oct 14, 2010 at 7:02 PM. Reason: [CLOSED]
  2. #2
    Hi,

    It is not officialy supported. Try the following sample but can be UI issue (i cannot guaranty that it will work always)
    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!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></title>
        
        <style type="text/css">
            #WestPanel-xcollapsed .x-tool{
               position:absolute;
               bottom:0;
               margin:3px;
            }
        </style>
    </head>
    <body>
        <ext:ResourceManager runat="server" />
            
        <ext:Window 
            ID="Window1" 
            runat="server" 
            Title="Simple Layout" 
            Icon="Application"
            Width="600" 
            Height="350"
            Border="false"
            Layout="Border" 
            Collapsible="true"
            Plain="true">
            <Items>
                <ext:Panel ID="WestPanel" runat="server" Width="175" Title="Navigation" Region="West" Collapsible="true">
                    <Listeners>
                        <AfterRender Handler="this.el.dom.removeChild(this.header.dom);this.el.dom.appendChild(this.header.dom);" />
                    </Listeners>
                </ext:Panel>
                <ext:Panel runat="server" Region="Center">                        
                </ext:Panel>
            </Items>
        </ext:Window>
    </body>
    </html>

Similar Threads

  1. [CLOSED] Bug resizing ViewPort
    By 78fede78 in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Oct 15, 2010, 6:33 PM
  2. [CLOSED] Viewport with footer
    By 78fede78 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Sep 22, 2010, 5:31 PM
  3. [CLOSED] KeyBinding without viewport?
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 19, 2009, 5:07 AM
  4. [CLOSED] ViewPort Question
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Nov 09, 2008, 3:45 PM
  5. [CLOSED] ViewPort Problem
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Sep 17, 2008, 7:51 AM

Posting Permissions