Stanniebeer
Stanniebeer

Reputation: 89

Sencha ExtJS msg alert won't dissapear

I'm sending messages on my app with:

Ext.Msg.alert('Unable to register');

The box pops up perfectly, and also dissapears after pressing 'OK' a few times, but after a few tries the box stays after pressing 'OK' (I can interact with the app though afterwards, the box just won't go away).

Anyone experienced this problem before who knows how to fix this?

Thank you

Upvotes: 1

Views: 147

Answers (1)

Tarabass
Tarabass

Reputation: 3152

Yes, experienced the same a while ago. I fixed it by adding the following lines to my app as a temporary solution. Never founded a real solution though.

Ext.Msg.defaultAllowedConfig.showAnimation = false
Ext.Msg.defaultAllowedConfig.hideAnimation = false

More information and possible duplicate..

Upvotes: 1

Related Questions