Hello,
A weird thing is happening in my code.
I have defined a store and his model and the proxy to load data from DB.
Then with my controller I load data into the store like this:.
Code:
var loadForms = this.getLoadFormsStore();
loadForms.load({
scope: this,
callback: function(records, operation, success){
if (success) {
console.log(records.length);
}
}
});
Here's the result in my console:

So I see the proxy has well retrieved data, but my records variable is empty.
If anyone has an explanation?
Thanks,