Reputation: 2241
In my Sencha Touch application, I want to show the loader but I don't want to block the user from interacting with the application. Is there some flag that I can set to accomplish this. I am showing loader using this command-
Ext.Viewport.setMasked({
xtype: 'loadmask',
indicator: true,
message: ''
});
Upvotes: 0
Views: 56
Reputation: 5856
The standard loading mask in Touch/Ext is designed to prevent user interaction while loading so it is not configurable to behave otherwise.
You could show a spinner icon somewhere on the screen without blocking the user access but it cannot be the standard loading mask.
Upvotes: 2