如何让Extjs弹出window窗口后背景窗口变灰(即不可编辑)

2025-01-28 10:49:50
推荐回答(1个)
回答(1):

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',