单击时,我的应用程序中有一个按钮,出现一个面板并创建了覆盖窗口,在新创建的面板上,单击时我有另一个按钮打开另一个带有覆盖的窗口。
理想情况下,上面板应阻止对下面板的访问,但仍允许用户访问下面板。
面板 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,
})