Tagged Questions
1
vote
1answer
155 views
createRecord for one-to-one relationship fails in ember-data RC1 (ember data revision 11)
createRecord never creates the belongsTo object.
Is there any work around for creating the child model object in a case where there is such relation Post-> hasOne -> Comment and comment is ...
1
vote
1answer
833 views
Ember data multi level hierarchy with embedded always
I am able to use embedded always for one level but I am unable to use it for two level deep model. Need an urgent help
App.Post = DS.Model.extend(
title: DS.attr("string")
comment: ...
0
votes
1answer
245 views
ember-data dynamic number of DS.attr 's
So i have a ember-data model and i want my users to be able to create different / more DS.attr per item and call them whatever they like. This will then send the json to rails server where i am ...
1
vote
1answer
674 views
Ember-data embedded objects stored as separate objects
I was wondering if it would be possible to define a model stored into another one.
I have this kind of structure:
Model Contact
String name
Model Address (hasMany)
Model Phone (hasMany)
...
3
votes
1answer
641 views
emberdata and mongodb embedded objects ID undefined
I have a problem regarding Ember data and Mongodb embedded objects. Here's my model :
App.Contact = App.Entity.extend({
name : DS.attr('string'),
firstname : ...
2
votes
5answers
2k views
Ember-data and MongoDB, how to handle _id
I'm using ember-data with rails and MongoDB and am having problem with the way IDs are stored in MongoDB - in a _id field.
Ember-data will use id as the default field for ID so I tried to override it ...
2
votes
0answers
242 views
How do I use ember-data to model this setup in mongodb?
I have an Item that can have many Sections. I store it in mongodb as an Item document with many Section embedded documents.
The Item can have a lot of Sections.
What is the recommended way to do ...
1
vote
1answer
195 views
ember-data and how to trigger commit when all bindings and observers have updated?
I have a Item model that has many Sections. Each Item is stored in mongodb and the sections are embedded documents, so i when i get an item the json contains the sections.
When i change a ...
