Olegatarenenko: Your solution removes the mask, but setting loadingText to 'null' also seems to break the plugin 'PullToRefresh' functionality for the list.
By "break", I mean that after pulling the down arrow to update, ui stays in this state and does not hide the PullToRefresh section on top.
Is there a way to hide the extra boot mask while still being able to pull for updates?
For those who are reading this in the future and trying to achieve what I described above, I worked on the problem with PullToRefresh by modifying the source code of Sencha touch 1.1.1 (line 45346 from sencha-touch-debug-with -comments.js). This is not ideal, but provides a quick workaround.
Original (PullToRefresh breaks)
onBeforeLoad: function() { if (this.isLoading && this.list.store.getCount() > 0) { this.list.loadMask.disable(); return false; } },
Bypass
onBeforeLoad: function() { if (this.isLoading && this.list.store.getCount() > 0) { try{ this.list.loadMask.disable(); } catch(err) { } return false; } },
Paul source share