Reputation: 3494
While creating native iOS apps, i used MBProgressHuds
to display an activity indicator like view when request were sent to the server, received from server.
Now i need to have a ProgressHud
(which is similar to MBProgressHud
in my application). How can i implement this with Sencha TOuch 2
. (I am using Cordova 1.6.1
)
Upvotes: 1
Views: 756
Reputation: 3447
If you want to use the native MBProgressHud you can by creating a Cordova plugin, instructions are here.
If you want to do it all in Sencha you might need to do it yourself with something like a Ext.MessageBox with a spinner inside it.
Upvotes: 1