Ignacio Baixas
Ignacio Baixas
Could you share some information about your model structure? Each record/collection has a `$scope` property that holds the parent scope. The first thing that comes to mind is that you...
Maybe you could check how many levels of nested scopes (and their types/contents) are held by the offending object? Just to check if the problem is some unnecessary collection chaining?
The common api is not accesible as static methods anymore, this is because the common api is not stateless and static methods should be stateless. I'm working on a small...
If you need to send the Contact id when the Staff record is saved then you should use a `belongsTo` association instead.
The item returned by `$find` is bound to the collection **scope**, but is not part of the collection (it's not even added to the collection when retrieved). To search for...
I would be a little worried about backward compatibility though... `$find` as rails `find`, always hits the api/database. Maybe we could add a new method to the collection API: `$resolveRecord(pk)`.....
Hey Chris, Currently restmod is being tested against the same browsers as angular, I initially wanted to have IE8 support but I haven't been able to test agains it using...
Take a look at the SharedModel plugin, if you make your category model **shared** and load all categories using a collection, then categories loaded in the collection will be automatically...
Hmm, you are right, the initial design was intended only to compare changes with already persisted data. I'll take a look to see if usage can be extended to what...
Hi @scriby, I'll add this for consideration for the 1.3 milestone, I'm not sure on the api though, specially for `$save`, since it already take other parameters. Have you considered...