Why did you change the following lines of code (ExtJs 4.0.2) in the Ext.proxy.Direct class from:
Code:
if(method.ordered){
if(method.len >0){if(paramOrder){for(len = paramOrder.length; i < len;++i){ args.push(params[paramOrder[i]]);}}elseif(me.paramsAsHash){ args.push(params);}}}else{ args.push(params);}
to (Ext 4.1. RC2):
Code:
method = fn.directCfg.method;
args = method.getArgs(params, me.paramOrder, me.paramsAsHash);
The code of ExtJs 4.1 RC2 causes an error when trying to load a store. If I replace the code with the one from ExtJs 4.0.2 everything works fine.