Looks like we can't reproduce the issue or there's a problem in the test case provided.
-
Touch Premium Member
Load mask broken in dataviews
This one is pretty straight forward... the load mask no longer shows up when using a dataview. This is because there is code commented out in onBeforeLoad in DataView.js (line ~619)
I'm not sure if there was a reason for it but uncommenting that code makes the load mask show up correctly again
Code:
onBeforeLoad: function() {
var loadingText = this.getLoadingText();
if (loadingText) {
this.setMasked({
// xtype: 'loadmask',
// message: loadingText
});
}
},
-
Yes, there were some problems with the centering the load mask properly so it was disabled for PR4. This has been fixed for the next release.
-
Touch Premium Member
Good to know, I figured it was something like that but didnt see it in the release notes. Thanks