user1315906
user1315906

Reputation: 3494

Adding ProgressHuds/ActivityIndicator in my sencha touch application

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

Answers (1)

Patrick Tescher
Patrick Tescher

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

Related Questions