Sencha,
If you extend the Ext.data.Store class in 5.0.0 and want to initialize its filters collection in the constructor, why do you now need to first invoke the callParent method before you can safely do so?
Below is a fiddle demonstrating this phenomenon. Run it as is using the 4.2.1 framework, and the store is initialized. Run as is using the 5.0.0.970, and an error is thrown. Move the me.callParent(…) statement to the beginning of the store’s constructor and the error disappears. This work around works, but why?
@brady