coding style:
> failure: function (response, opts) {
> Ext.Msg.alert('Error',response.htmlStatus);
> },
I use 4 spaces indent, also add space between parameters.
failure: function (response, opts) {
Ext.Msg.alert('Error', response.htmlStatus);
},
- Dietmar