zoukankan      html  css  js  c++  java
  • EXTJS 4.2 资料 控件之Window窗体自动填充页面

    1.html页面代码:

     <div id="component" style="100%;height:100%">
    <body>
        <div id="component" style="100%;height:100%">
            <script type="text/javascript">
                Ext.onReady(function () {
                    Ext.QuickTips.init();
                    CompanyGatherForm();
                });
            </script>
        </div>
    </body>

    2.Extjs代码

       FunctionActionUpdate = function (ContentCategory) {
    
            var width = document.getElementById('component').clientWidth;//获取当前页面宽度
            var height = document.getElementById('component').clientHeight;//获取当前页面高度
    
            if (gridCompanyDetail.getSelectionModel().getSelection()[0] == null)
            { Ext.MessageBox.alert('提示', '请选择要编辑的记录!'); return; }
            else
            {
                //这里要跳转页面
                var subWindow = new Ext.Window({
                    title: '窗口',
                     width,//给Win窗体设定宽度
                    height: height,//给Win窗体设定高度
                    modal: true,//模态的 后面的页面就不能点了 
                    frame: true,
                    layout: 'fit',
                    closeAction: 'hide',
                    closable: true,   //是否显示关闭按钮
                    maximizable: true,//最大化
                    minimizable: true,//最小化  
                    listeners: {
                        minimize: function (subWindow, opts) {
                            subWindow.collapse();
                        }
                    },
                    html: '<iframe style="border-top- 0px; border-left- 0px; border-bottom- 0px;  "100%"; height:"100%"; border-right- 0px" src=/ProjectWeb/Page/InformationManagement/IM_BS_CompanyGather.html?ContentCategory=' + ContentCategory + ' frameborder="0" width="100%"  height="100%"scrolling="no"></iframe>',
    
                });
                subWindow.show();
            }
        }
    
    
  • 相关阅读:
    VMware Workstation网卡不启动
    解决IE10以下对象不支持“bind”属性或方法
    二分法查找
    选择排序与冒泡排序
    方法内部开启线程的方法
    重写Collections实现自定义排序
    根据反射生成SQL语句
    vue插件安装备忘
    vue cli4.x 新建项目 过程提醒
    php setcooike()失败的原因之一,希望能帮到你
  • 原文地址:https://www.cnblogs.com/foreverfendou/p/4287513.html
Copyright © 2011-2022 走看看