用window实现类似Ext.msg.alert()效果
编程技术  /  houtizong 发布于 3年前   102
公司的项目没有使用ifram,所以整个项目就一张页面,导致当使用Ext.msg.alert()后会遮罩整个界面。如果我只想遮罩右边的tab而让左边的tree依然还能用的话就只有重写一个window来代替alert。然后自己再通过mask()方法来手工控制遮罩
Ext.create('Ext.window.Window', {title : title,id : id,renderTo : renderTo,resizable : false,constrain : true,border : false,cls : Ext.baseCSSPrefix + 'message-box',buttonAlign : 'center',width : 250,height : 115,items : [{xtype : 'container',anchor : '100%',style : {padding : '10px',overflow : 'hidden'},items : [{xtype : 'image',src : '/btoc/resource/app/images/icon-question.gif',width : 32,height : 32,style : {'float' : 'left'}}, {xtype : 'label',padding : '0 0 0 20',text : msg}]}],buttons : [{text : '确定',handler : ok}, {text : '取消',handler : function(btn) {btn.up('window').close();}}]}).show();
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接