sencha touch messagebox unclickable

android, sencha-touch

Solution

I found the solution:

Add Following line before showing Alert Box:

Ext.Msg.defaultAllowedConfig.showAnimation = false;

Problem

In sencha touch we have a little problem with a messagebox. It looks that it's something with android 4.3. On the most devices it's works perfect, but on a device with android 4.3, when the user press the button, the messagebox will not disappear. ``` Ext.define('TestBuild.view.MyPanel', { extend: 'Ext.Panel', config: { items: [ { xtype: 'button', itemId: 'mybutton', text: 'MyButton' } ], listeners: [ { fn: 'onMybuttonTap', event: 'tap', delegate: '#mybutton' } ] }, onMybuttonTap: function(button, e, eOpts) { console.log("Test"); Ext.Msg.alert("TEST"); } }); ```

Original source