Thank you for reporting this bug. We will make it our priority to review this report.
[5.0.0] Wrong signature of the TreeStore load event in the doc, a paramter is missing
[5.0.0] Wrong signature of the TreeStore load event in the doc, a paramter is missing
The documentation says
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 allIf 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)
[5.0.0] Wrong signature of the TreeStore load event in the doc, a paramter is missing
Aucun commentaire:
Enregistrer un commentaire