I have an issue with Extjs Alerts in modern toolkit. I need to display an alert but sometimes it renders perfectly and sometimes it overlaps the screen just like in the image above,
Below is my
Ext.Msg.alert("Title", 'Message');
I have an issue with Extjs Alerts in modern toolkit. I need to display an alert but sometimes it renders perfectly and sometimes it overlaps the screen just like in the image above,
Below is my
Ext.Msg.alert("Title", 'Message');
This might be a little late of a response but I had the same issue. Need to check the transform for the message window.
var alertMsg = Ext.Msg.alert("Title", 'Message')
alertMsg.setStyle('transform:translate3d(65px, 218px, 0px);');