Tagged Questions
2
votes
2answers
845 views
Iterating over a model's attributes in EmberJS handlebars template
Is there a way to iterate over a view's context's attributes in EmberJS? I am using Ember-Data (https://github.com/emberjs/data) for ORM.
Lets say I use connectOutlets to register a UserView with a ...
3
votes
2answers
441 views
How do I load two models in one JSON request in Ember-data?
Using Ember-data and Ember.js, I'm trying to load two models with one JSON request. The models have a relationship analogous to this:
App.Person = DS.Model.extend({
name: DS.attr('string'),
...
1
vote
1answer
74 views
ember.js model data is not being output by the collectionView
I am at sea, and would be grateful for any help, with the latest version of Ember. Using the todo example, i've tried to include routes and DS models in the following adapted ...
0
votes
0answers
218 views
emberjs form creates a new record but the edit form doesn't bind to new record
I have been bumping my head concerning editing a child record that is already created. I am using thesame form partial for both creating and editing. I am able to create a child record successfully ...