Tagged Questions
1
vote
1answer
60 views
Ember Data - re-commit current transaction
I have a button that submits the whole form to the server. Sometimes the server responds with errors and the users need to change/update the fields and submit again (common sense?). I'm using this ...
1
vote
1answer
55 views
How do I track Em.Store dirtiness in ember.js
I'm trying to track the presence of dirty records in my Ember store.
I want to have a 'save' button with a linked property in order to disable the button whenever there are no records pending update.
...
1
vote
1answer
296 views
How to update Ember Data object multiple times?
I have simple app working with Band entities. I have created the form where the user can update existing record. It's handled by this controller:
App.BandEditController = Ember.Controller.extend({
...
6
votes
1answer
307 views
Ember-data: how to share and update a object in transaction between controller actions?
I've found on GitHub a good working example for ember-data under https://github.com/dgeb/ember_data_example and try to extend it by nested resource ('has_many: comments'). In the original example a ...