The documentation says

http://ift.tt/1rAx1y8




load(this, records, successful, operation, node, eOpts)

Fires whenever the store reads data from a remote data source.





But, in the reality:

- the sequence of the parameters is different

- the parameter 'operation' is not passed at all


If you look into the file 'ext-all-debug.js', method 'onProxyLoad', line 60250, the firing of the 'load' event looks as follows



Code:



me.fireEvent('load', me, operation.node, records, successful);

To correct this, the following steps should be done:

1) The event firing call in the line 60250 should be as follows:



Code:



me.fireEvent('load', me, operation.node, records, successful, operation );

2) The signature of the 'load' event in the documentation should be changed as follows:


load(this, node, records, successful, operation)