EXTJS 4.2 资料 控件之Window窗体自动填充页面_html/css_WEB-ITnose

WBOY
發布: 2016-06-24 11:49:19
原創
1161 人瀏覽過

1.html页面代码:

 <div id="component" style="width:100%;height:100%">
登入後複製

    <div id="component" style="width:100%;height:100%">            
登入後複製

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: 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-width: 0px; border-left-width: 0px; border-bottom-width: 0px; width: "100%"; height:"100%"; border-right-width: 0px" src=/ProjectWeb/Page/InformationManagement/IM_BS_CompanyGather.html?ContentCategory=' + ContentCategory + ' frameborder="0" width="100%"  height="100%"scrolling="no"></iframe>',            });            subWindow.show();        }    }
登入後複製

登入後複製

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!