ember-data is a data persistence extension for the Ember.js framework.

learn more… | top users | synonyms (1)

3
votes
2answers
392 views

Could someone provide a diagram of how ember data relates to the broswer's persistent layer?

Specifically, I am confused about this line in the ember-data documentation: Adapter API An adapter is an object that receives requests from a store and translates them into the appropriate ...
3
votes
1answer
1k views

Why are my embedded hasMany relationships undefined?

I'm loading App.Structure objects using ember-data's fixtures adapter. These objects have embedded App.Overlay objects as a hasMany relationship, like this: App.Structure = DS.Model.extend({ name: ...
3
votes
2answers
905 views

How to createRecord with belongsTo association with Ember.js & Rails?

I'm having trouble with a belongsTo association and sending a foreign key to my Rails controller with Ember.js and ember-data. My Ember.js controller will send the Project name to the Rails ...
3
votes
3answers
2k views

ember-data DS.RESTAdapter causes TypeError

I'm trying out Ember.js with ember-data, and I have the following application defined: window.App = Ember.Application.create() App.store = DS.Store.create revision: 4 adapter: ...
3
votes
1answer
159 views

No 'addArrayObserver' or 'removeArrayObserver'

I am modelling an administrative interface that helps manage database tables. There are two models: [DbxTables, DbxColumns]. I want to allow the user to choose a table using Boostrap's tab-menu and ...
3
votes
1answer
80 views

Ember.js: How do I bind a handler that should be called when records are loaded into DS.RecordArray?

Using Ember.js, with Ember Data, when doing Model.find() I'd like to be able to bind a handler that gets called as soon as records are available in the resulting DS.RecordArray. I've found a solution, ...
3
votes
2answers
287 views

How are relationships between related models in ember-data established

I had assumed that if a model in ember-data contained an id related to a second model, then the id could also be used to establish a belongsTo relationship to the second model object, as per the issue ...
3
votes
1answer
195 views

Dynamically fill models with more detailed data in emberjs

I'm a bit stuck with implementing master-detail views in emberjs. Most of my views have a master-view which is just a list of titles. Then, a user can click such title and he/she gets an overlay ...
3
votes
4answers
310 views

Routing + DS with ember-1.0.0-rc.1 + ember.data-11 [demo + tutorial + source]

Where can I find a tutorial + demo + source to the latest ember-1.0.0-rc.1 + ember.data-11 version? Starter-Level. I tried so many tutorials, but all I found are out dated :( Thanks so much in ...
3
votes
1answer
237 views

Ember.js Data how to clear datastore

I am experiementing with Ember.js and have setup a small app where users can login and logout. When the user logs out I want to clear all of the currently cached records in the Data Store. Is there a ...
3
votes
1answer
309 views

Ember-Data: How to use `DS.Adapter.findHasMany`

I asked a much longer question a while back, but since the library has changed since then, I'll ask a much simpler version: How do you use DS.Adapter.findHasMany? I am building an adapter and I want ...
3
votes
1answer
724 views

Embedded records in fixtures error: "Cannot call method 'hasOwnProperty' of undefined

I'm trying to load fixtures into my app that has embedded records. Loading the data from the server (using a DS.RESTAdapter) works, but it does not when I try to load them through the ...
3
votes
2answers
366 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'), ...
3
votes
1answer
172 views

Ember associated child records disappearing after reverting change to association

After changing an association and then changing it back (a couple of times), the association is lost. var newCar = MyApp.CarModel.find('hummer'); MyApp.Person.find('wycats').set('car', ...
3
votes
1answer
591 views

in ember-data, when in the lifecycle is a newly created record's id available?

using the RESTAdapter in ember-data. i create a record on the server, and i need to get the id of the newly created record. that id gets passed back from the server, i can see it in the json ...
3
votes
2answers
637 views

remove child from hasMany relationship

How do you remove a child from a hasMany relationship without deleting the child? I have tried setting the foreign_key of the child to null. I have also tried using removeObject on the parent ...
3
votes
1answer
1k views

How to persist hasMany association in a single Ember.js form using Ember Data & Rails?

I'm having trouble determining the correct way to persist a hasMany association with a single form using Ember.js, Ember Data and Rails. A Client hasMany Projects. I have a new project form that has ...
3
votes
1answer
70 views

Ember-Data .find() vs .all() - how to control cache?

I was told that in order to not make a request all the time, one can use .all() method to load data that is kept in the store. But how does Ember deal with cache? I have a couple of questions. How do ...
3
votes
0answers
34 views

Why does router.transitionTo abort when transitioning to the same model twice?

If I get my ember-data model from the store and transition to a route with it var model = App.Foo.find(1); router.transitionTo('foo', model); It transition to the route below and I see the ...
3
votes
0answers
90 views

Reset ember-data FixtureAdapter store/models in tests

Our app uses ember-data with the FixtureAdapter. We're testing the model code (various JS calculations) using Jasmine and js-test-driver. Each it block creates its own set of records in a beforeEach ...
3
votes
1answer
177 views

Ember-data Find nested models with parent

How can I tell Ember to retrieve not only a list of matches, but also get objects for each of the players associated? In my router, I have: App.MatchesRoute = Ember.Route.extend model: -> ...
3
votes
1answer
254 views

ember-data customs serializing

Hello I am fairly new with ember and exploring it, I have been able to do a simple post to a resource, nevertheless it render my object like this {"person":{"atribute1":"jjj","atribute2":"jjj"}} ...
3
votes
1answer
251 views

Ember Data - hasMany/belongsTo with different model than default

In Ember Data, how do you define a belongsTo/hasMany association that uses a different model or foreign key than what would be chosen by default? For example, I have an App.Item that belongsTo an ...
3
votes
2answers
409 views

Ember Data and dirty records

What is the recommended way of discarding changes made to records? I have the following logic to revert dirty records to their original state. if controller.get('isDirty') ...
3
votes
1answer
359 views

Ember-Data: Knowing when a RecordArray is completely populated

I have a situation where isLoaded on a DS.RecordArray changes to true but the content, length property of the RecordArray is still empty, 0 at that time and only changes later. Sample ...
3
votes
1answer
370 views

Rendering nested objects in Ember.js

New to Ember and I cannot figure out how to render nested options either via associated ember-data models or simply as json objects. JSON looks like this: contact: { first_name, ...
3
votes
1answer
200 views

Enumerable Objects (key value maps) in Ember.js

Is there a key value object in Ember that supports Ember.Array / Ember.Enumerable? I would like to iterate over them with {{#each}} in my Handlebars templates. My use case is displaying arbitrary ...
3
votes
1answer
272 views

Ember-Data relationship for objects that have relationships to other instances of the same object

I am converting a project from Backbone (w/ Backbone Relational for ORM) to Ember and I cannot find in the documentation an example of how to use DS.belongsTo to reference an object of the same type. ...
3
votes
1answer
396 views

Ember data rendering hasMany

In my ember app I have a models: App.Schedule = DS.Model.extend({ manager:DS.belongsTo('App.Manager', { embedded: true }), entries:DS.hasMany('App.Reservation', { embedded: true }) }); ...
3
votes
1answer
326 views

Saving a prent and child at once in Ember-Data

While playing with ember I was trying to save both a parent and a child at the same time. What I noticed was that the child's parent_id was always being set to nil. Then I saw this issue on GitHub. ...
3
votes
1answer
403 views

Managing transactions and relationships

I am trying to manage ember-data transactions (creating and committing records) on a model that has two belongsTo relationships. In initially I was simply adding the new record to the transactions ...
3
votes
2answers
876 views

Emberjs Data How to load hasMany-Data later

I have the following Emberjs Data model: App.File = DS.Model.extend({ like: DS.attr('boolean'), comments: DS.hasMany('App.Comment') }); App.Comment = DS.Model.extend({ file: ...
3
votes
1answer
275 views

rollback transaction if commit returns error

For these steps: 1. Start Transaction by App.router.transaction() 2. Add Post-1 & Post-2 to transaction 3. Delete Post-1 4. Delete Post-2 5. transaction.commit() How to handle following: ...
3
votes
1answer
838 views

Partial loads using Ember Data and relationships

I'm attempting to write an XMPP parser that will manage some Ember Data models. Information comes in asynchronously so AFAIK it does not fit neatly into the Adapter pattern. There are a lot of cases ...
2
votes
2answers
318 views

Ember.js Many to many relationships. How to access data

We're working on a messaging system which will allow a user to submit a message to many social media accounts, which would result in a post to each account. In our application we have Accounts, ...
2
votes
3answers
1k views

Mapping data in ember-data

I have a basic ember-data model object: App.Group = DS.Model.extend({ //attributes }); I have json which is structured like this: root.levelone.leveltwo.property I don't want to map this ...
2
votes
1answer
370 views

How do I modify the urls that are being generated by ember-data's REST adapter?

I can account for pluralisation using: DS.RESTAdapter.configure("plurals", { query: "queries" }); but I need to append '.json' to all of the routes that are being generated as the API I am ...
2
votes
2answers
36 views

Reusing a model for different objects

I have defined the following model: App.Node = DS.Model.extend({ type: DS.attr('string'), name: DS.attr('string') }); The data for this model can be retrieved via REST in api/nodes. Now I ...
2
votes
1answer
3k views

Ember-Data Fixture Adapter

Is there a commit method for the fixture adapter? What does it do? As my understanding goes store.commit() puts an API call when used with REST adapter. Can I use isLoaded property with fixture ...
2
votes
1answer
193 views

How to Make Ember.js Behave with Grails Controller Names?

Grails is pretty powerful, and lets you turn your Domain objects into JSON with a single statement (object as JSON). Unfortunately, this is not sufficient to interact with Ember.js for a few reasons. ...
2
votes
2answers
231 views

How to hijack the promise resolution after a generic find on an ember-data model?

I need to inspect the ember-data model coming back from a basic find manually (this model is not bound to the template and instead I need to apply some logic dynamically) So far I've tried the ...
2
votes
1answer
444 views

emberjs new-router-V3/controller can't create or edit record using ember-data

In this jsfiddle, I have EmBlog.PostsNewRoute and EmBlog.PostsEditRoute. The routes contain events for 'save, cancel and destroy'. When I create a new record, it only creates it in memory and never ...
2
votes
2answers
848 views

DS.Model url not working in ember.js

I'm very, very, very new to Ember :-) I have a DS.Model where I want to force the extension with .json, for retrieving the data from a Rails Server. The url from the Server is working, and for I can ...
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
1answer
566 views

Ember.js pre.4, RESTAdapter and hasMany relationships

I'm doing my damnedest to find and/or cobble together a working jsfiddle of a hasMany/belongsTo relationship in the latest version of ember.js and ember-data that utilizes the RESTAdapter. So far I ...
2
votes
1answer
189 views

Self-Join with Ember-Data

Does anyone have any suggestions on how to manually create a self-join relationship using ember-data? If, for example, a user had many followers (other users), what would be the simplest way to ...
2
votes
1answer
1k views

Ember-data fixtures adapter not loading all data

I have an ember-data model definition that looks like this: Sylvius.Filter = DS.Model.extend({ title: DS.attr('string'), slug: DS.attr('string'), // Belongs to Atlas atlas: ...
2
votes
2answers
849 views

Revert change to ember data model

Is there a way to revert a change to an Ember Data model easily? I have a model bound to an edit view. This view enables the user to cancel editing, at which point I'd like to revert the changes to ...
2
votes
1answer
203 views

ember-data fixture data “Cannot read property 'promise' of undefined”

This is driving me nuts. I'm more or less following the guide video from http://emberjs.com/guides/, but providing my own data sets for fixture data. However, no matter what I try I end up with the ...
2
votes
1answer
78 views

Ember.js app should redirect to login, when ember-data receive http status 401

I want my Emberjs application to handle HTTP Status Unauthorized (401). The application uses ember-data to integrate a JSON API (Rails). The client layer (Emberjs) should redirect to a Emberjs ...

1 2 3 4 5 16