开发备忘:
ExtJS在使用Ext.Msg.alter(),Ext.Msg.confirm()弹出窗口后,背景窗口即变灰,不可编辑。但使用Ext.Window时,默认弹出窗口后,背景窗口仍是可以编辑的这时可以在Ext.Window属性中添加“modal:true ”的配置,即可实现弹出window窗口后背景窗口变得不可编辑。
以下为简单的例子代码:
new Ext.Window({
applyTo:'hello-win',
layout:'fit',
width:500,
height:300,
closeAction:'hide',
plain: true,
modal:true
})
ExtJS 弹窗技巧
本文介绍了如何在ExtJS框架中使用Ext.Window组件创建模态弹窗,通过设置modal属性为true来禁止用户在弹窗打开时编辑背景窗口的内容。
5107

被折叠的 条评论
为什么被折叠?



