mesh icon indicating copy to clipboard operation
mesh copied to clipboard

A model centric persistence framework for Flex.

Results 5 mesh issues
Sort by recently updated
recently updated
newest added

There's little benefit to rolling and maintaining our own reflections library.

feature

Some things that can be cleaned up to make using data sources easier. ### Required methods Here's a list of methods that the data source needs to create, retrieve, update...

There's a lot of utility classes in the `mesh.core` package. Lets move ones that are not essential to Mesh into a separate project.

refactor

Has many associations are empty until you call `HasManyAssociation.load()`. This method invokes the `DataSource.belongsTo()`. I think we can simplify the data source by having the backend pass back an array...

feature

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

feature