Thank you for reporting this bug. We will make it our priority to review this report.
AbstractStore.isDestroyed inconsistent with Ext.Component.isDestroyed
AbstractStore.isDestroyed inconsistent with Ext.Component.isDestroyed
Compare these two destroy methods. I think the AbstractStore.isDestroyed property setting should be moved below the onDestroy call.
Code:
Ext.define('Ext.Component', {
...
destroy: function() {
...
me.onDestroy();
...
me.isDestroyed = true;
...
},
...
****************************
Ext.define('Ext.data.AbstractStore', {
...
destroy: function() {
...
me.isDestroyed = true; // <--- move below onDestroy?
...
me.onDestroy();
}
...
vendredi 27 juin 2014
AbstractStore.isDestroyed inconsistent with Ext.Component.isDestroyed
Inscription à :
Publier les commentaires (Atom)
Aucun commentaire:
Enregistrer un commentaire