I had the same problem, basically the loading mask stays, when doing cascading ComboBoxes. Wasted a lot of hours trying to figure it out and then found the solution on a forum. Seems like a bug that needs fixing.
The problem occurs when reloading the ComboBox for the second time:
- Load a ComboBox data
- Expand the ComboBox once
- Reload ComboBox data calling store load function
- Expand the ComboBox again
- Loadmask doesn't dissapear like it should
Solution
Ext.override(Ext.LoadMask, {
onHide: function() {
this.callParent();
}
});
No comments:
Post a Comment
NO JUNK, Please try to keep this clean and related to the topic at hand.
Comments are for users to ask questions, collaborate or improve on existing.