我的应用程序中有一个按钮,当单击一个面板并创建覆盖窗口时,在新创建的面板上,我点击另一个按钮时会打开另一个带覆盖的窗口。
理想情况下,上面板应阻止对下方面板的访问,但仍允许用户访问下面的面板。
小组1
app.views.EventForm = new Ext.Panel({
id: 'eventFormPanel',
layout: 'hbox',
floating: true,
modal: true,
})
小组2
app.views.RecurringOptions= new Ext.Panel({
id: 'RecurringOptions',
layout: 'hbox',
floating: true,
modal: true,
})
答案 0 :(得分:0)
将hideOnMaskTap属性设置为true,这意味着当用户在第二个叠加层外点击时,它会消失并显示第一个叠加层...
希望有所帮助