I am working on some code using store.load. This is my example.
store.load({
callback: function(records, operation, success) {
if(success){
var id = store.getAt(0).data.id;
}
});
Is there a way to access records.length outside the store.load? For example, something like this?
store.load({
callback: function(records, operation, success) {
var id = store.getAt(0).data.id;
console.log(id); //returns the right value, but cannot use this value outside the load.
}
});
console.log(id);//returns undefined.
Yes you can do that.
Hope it helps!