mesh
mesh copied to clipboard
Support responders in load() and refresh()
Instead of having to add an event listener to Record.loadOperation
, instead pass in a responder to Record.load()
.
var person:Person = store.query(Person).find(1);
person.load(new RequestResponder(function():void
{
trace(person.name);
});