proxy.jsonp overrided the destroy method irrately:
this method will be called by 'me.proxy.batch[operation.action]' in 'Batch' object:Quote:
//inherit docs
destroy:function()
{
this.abort();
this.callParent(arguments);
},
when the action is 'destroy', the 'BUG' will be occuring..., the calling will be abort!Quote:
runOneOperation: function(....
....
operation.setStarted();
me.proxy[operation.action](operation, onProxyReturn, me);
}
why override this method?
