How sets z-index to Ext.Panel (ExtJS)?

后端 未结 1 1946
日久生厌
日久生厌 2020-12-18 04:08

I have problem with z-index (i think) in ExtJS. While drag and drop element from GridPanel to DataView I drop element over GridPanel and it dropped to DataView. But DataV

相关标签:
1条回答
  • 2020-12-18 04:20

    Have you tried setting the z-index of your item to a higher order? ie.

    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');
    
    0 讨论(0)
提交回复
热议问题