Trying to hide a dragable container with element.close() does not work on Android 2.3. You're being left with an empty non-hidden Stackview.
I traced the problem to changes in src/Component.js. The new activeAnimation that is referenced in animateFn, hide and show seems to be the Problem, but I don't know exactly why.
Part of the problem (but not all) is the change in animateFn from "if (newState)" to "if (!Ext.isEmpty(newState))". if newState is false the old Code would do nothing. But isEmpty(false) is false and the Code will be executed. :s
A workaround is overwriting animateFn for Android 2 with the old Version (from Touch 2.2.1) that doesn't use activeAnimation.
I traced the problem to changes in src/Component.js. The new activeAnimation that is referenced in animateFn, hide and show seems to be the Problem, but I don't know exactly why.
Part of the problem (but not all) is the change in animateFn from "if (newState)" to "if (!Ext.isEmpty(newState))". if newState is false the old Code would do nothing. But isEmpty(false) is false and the Code will be executed. :s
A workaround is overwriting animateFn for Android 2 with the old Version (from Touch 2.2.1) that doesn't use activeAnimation.
Aucun commentaire:
Enregistrer un commentaire