extjs4-EXTjs自适应窗口大小问题 求大神指点

问题描述

EXTjs自适应窗口大小问题 求大神指点

代码如下:
Ext.define('MyApp.view.MyPanel', {
extend: 'Ext.panel.Panel',

autoRender: false,
id: 'panel',
layout: {
    type: 'fit'
},
overlapHeader: true,
title: '分支机构目录',
titleAlign: 'left',
titleCollapse: false,

initComponent: function() {
    var me = this;

    Ext.applyIf(me, {
        items: [
            {
                xtype: 'treepanel',
                autoRender: false,
                id: 'treepanel',
                itemId: 'panel',
                constrain: true,
                autoScroll: true,
                defaultAlign: '[100%,100%]',
                header: false,
                title: 'My Tree Panel'
            }
        ],
        dockedItems: [
            {
                xtype: 'container',
                dock: 'bottom',
                id: 'container',
                layout: {
                    type: 'hbox'
                },
                items: [
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0',
                        width: 80,
                        allowDepress: false,
                        iconAlign: 'top',
                        iconCls: '',
                        menuAlign: 'tl----bl?',
                        text: '新增分类'
                    },
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0 ',
                        width: 80,
                        text: '修改分类'
                    },
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0 ',
                        width: 80,
                        text: '删除分类'
                    },
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0 0 ',
                        width: 100,
                        text: '新增分支机构'
                    },
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0 0',
                        width: 100,
                        text: '修改分支机构'
                    },
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0',
                        width: 100,
                        text: '删除分支机构'
                    },
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0 ',
                        width: 100,
                        text: '停用分支机构'
                    },
                    {
                        xtype: 'button',
                        margins: '7 5 0 0 ',
                        margin: '0 5 0 0',
                        width: 60,
                        text: '移动'
                    },
                    {
                        xtype: 'container',
                        flex: 1,
                        layout: {
                            align: 'middle',
                            pack: 'end',
                            type: 'hbox'
                        },
                        items: [
                            {
                                xtype: 'button',
                                margins: '5 5 0 0 ',
                                autoRender: false,
                                margin: '0 5 0 0 ',
                                width: 60,
                                iconAlign: 'right',
                                text: '退出'
                            },
                            {
                                xtype: 'button',
                                margins: '5 5 0 0 ',
                                margin: '0 5 0 0',
                                width: 60,
                                text: '刷新'
                            }
                        ]
                    }
                ]
            }
        ]
    });

    me.callParent(arguments);
}

});

时间: 2024-11-05 16:25:51

extjs4-EXTjs自适应窗口大小问题 求大神指点的相关文章

extjs 页面显示问题,困扰我太多天了,求大神指点

问题描述 extjs 页面显示问题,困扰我太多天了,求大神指点 项目环境:用的是ssm框架,extjs3.0版本. 第一次点击"业绩加办账户"然后点击新建的时候窗口没有问题 关闭"业绩加办账户"之后,在点开这个功能菜单,再点击新建就出现问题了 只能刷新整个页面才能变回正常 我用的是grid和form组合,查询按钮和文本框的代码: applyAccount.gridManager = new Ext.grid.GridPanel({ //title : '客户经理选取

Genymoation安装之后打开虚拟机报错求大神指点

问题描述 Genymoation安装之后打开虚拟机报错求大神指点 错误是这样的 求大神指点,谢谢 解决方案 多启动几次,如果还不行,就启动virtualbox,在里面看看对应的虚拟机是否正常可以启动,或者先关掉它

ftp服务器-毕设求大神指点!!题目是基于SaaS模式的分布式FTP服务器技术研究

问题描述 毕设求大神指点!!题目是基于SaaS模式的分布式FTP服务器技术研究 内容是: 目前,云计算正在各领域得到越来越多的应用,出现了多种云计算环境,掌握云计算的概念,熟悉相关云计算平台上的软件开发方法,对提高学生综合运用所学知识解决实际问题具有十分重要的现实意义.作为云计算平台之一的百度云,已得到了广泛应用, 本课题在理解FTP服务器模式的前提下,在saas环境下建立分布式的ftp服务,用户可通过ftp客户端传送数据. 该课题具有以下要求: 1. 了解云计算的基本原理,掌握基于saas的开

c++问题-在acm上刷题老是通不过,求大神指点一二,到底问题出在哪里。不胜感激!!!

问题描述 在acm上刷题老是通不过,求大神指点一二,到底问题出在哪里.不胜感激!!! #include #include using namespace std; int main() { int T; int k,t=0; int i, j, n1, n2; char a[1010], b[1010], c[1015]; string d[20], e[20], f[20]; cin>>T; for(k=1; k<=T; k++) { cin>>a>>b; d[

spring mvc-springmvc+mybatis+quartz的项目启动出错了,求大神指点

问题描述 springmvc+mybatis+quartz的项目启动出错了,求大神指点 看不懂什么情况,求大神指点下 jackson-mapper-asl严重: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/Quart

mfc-MFC中设置注册界面,运行结果一直是注册成功,怎么回事?求大神指点

问题描述 MFC中设置注册界面,运行结果一直是注册成功,怎么回事?求大神指点 void CREGISTERDlg::OnBnClickedButtonOk(){ // TODO: 在此添加控件通知处理程序代码 UpdateData(true); if (m_NAME == "" "" || m_PWD == "" "" || m_PWD1 == "" "") { MessageBox(T

java-JAVA 我想在10到1000之间打印各个数位之和为5的数字,这样写有什么错,新手求大神指点

问题描述 JAVA 我想在10到1000之间打印各个数位之和为5的数字,这样写有什么错,新手求大神指点 public class Demo1 { public static void main(String []args){ int n=10; int t=n; int sum=0; while(t<=1000) { t++; sum=sum+t%10; t=t/10; } if(sum==5) { System.out.println(""各个数位之和为5的有:"&q

oa部署上服务器报错-OA部署上服务器报错,求大神指点!

问题描述 OA部署上服务器报错,求大神指点! 日志名称: Application来源: Application Error日期: 2015/10/23 8:11:36事件 ID: 1000任务类别: (100)级别: 错误关键字: 经典用户: 暂缺计算机: OAWEB描述:错误应用程序名称: apache.exe,版本: 2.2.22.0,时间戳: 0x4f242d7a错误模块名称: ntdll.dll,版本: 6.1.7601.17514,时间戳: 0x4ce7ba58异常代码: 0xc000

spark dataframe 中write 方法,求大神指点下,不胜感激

问题描述 spark dataframe 中write 方法,求大神指点下,不胜感激 dataframe的write方法将spark分析后的结果放到pg数据库,结果表中有个自曾字段,而那个write方法不能指定添加那几个字段只能全部添加,怎么办,求大神指导换种思路也行,不胜感激,小弟欲哭无泪啊 解决方案 http://www.open-open.com/lib/view/open1452259673808.html