首页 > 代码库 > Extjs layer 设置

Extjs layer 设置

Ext.Msg.show({
    title:‘Request Failed‘,
    msg:"Error, The request was not found in the database",
    icon: Ext.MessageBox.ERROR,
    buttons: Ext.Msg.OK
});
Ext.MessageBox.getDialog().getEl().setStyle(‘z-index‘,‘80000‘);

var p = new Ext.Panel({....});

p.getEl().setStyle(‘z-index‘,‘80000‘);

可以通过setZindex来使相应的控件的前后。。

Extjs layer 设置