ember-data is a data persistence extension for the Ember.js framework.
1
vote
0answers
124 views
scoped access through account /user object in emberjs init: function()
Assuming i have emberjs model/controller/views for account , project and task, and i want to scope access to the project and task through account, how do i do that in emberjs. I am looking at using ...
3
votes
1answer
393 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 })
});
...
1
vote
2answers
265 views
Loading a record into ember-data creates a nearly empty record
So while writing an Ember.js app, I couldn't get the most basic ember-data records to work. Using the latest git builds of Ember.js and ember-data, I ran this code in firebug: (Using what I learned ...
0
votes
1answer
117 views
Automatic object to array conversion
I am using Ember-Data on client side & ruby on server side to fetch data from postgres SQL database,
When I do App.Person.findAll(App.Person) from the server side I am returning an array of ruby ...
0
votes
1answer
538 views
text field filtering a list using ember + ember data
I'm new at using ember, but already familiar with it, basically following some tutorials here and there and reading the api docs. But tutorials don't go too deep into more complex topics.
These are ...
1
vote
2answers
105 views
Deleting all objects in an association
Given a model that looks something like this:
App.Parent = Ember.Model.extend(
children: DS.attr.hasMany('App.Child')
)
App.Child = Ember.Model.extend(
parent: ...
0
votes
1answer
297 views
Record staying in 'loaded.saved' state after sending 'becameClean' in ember-data
I am attempting to send a dirty record to the clean state manually (in relation to How to manually set an object state to clean (saved) using ember-data).
I've stumbled across something that may be ...
0
votes
1answer
190 views
Ember data override foreign key convention
I am trying to load json data into the following model using findAll:
App.Territory = DS.Model.extend({
name: DS.attr('string'),
code: DS.attr('string'),
regionId: DS.attr('string')
});
...
2
votes
1answer
397 views
How to realize meteor like real-time features in ember.js and ember-data?
I'm evaluating ember.js with ember-data and meteor for a single-page web app.
So far my conclusion is that meteor can best be compared with a combination of ember.s and ember data while ember data ...
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 ...
4
votes
4answers
423 views
emberjs handle 401 not authorized
I am building an ember.js application and am hung up on authentication. The json rest backend is rails. Every request is authenticated using a session cookie (warden).
When a user first navigates ...
4
votes
2answers
845 views
How to manually set an object state to clean (saved) using ember-data
Explanation:
I'm using ember-data for a project of mine and I have a question that revolves around the possibility of dirtying an object and then setting its state to clean again on purpose - without ...
0
votes
1answer
242 views
How to rollback an unsuccessful GET request in ember-data
Working with ember-data is amazing, it steps up to most of my data handling challenges out of the box. However, there's one issue I've been digging through Google searches trying to find an answer ...
0
votes
1answer
247 views
ember nested resource FK value on create
i'm a newbie in ember, and i've been scratching my head on this since yesterday.
I want to make a simple Blog example using ember and rails with serializers.
I've been able to make the CRUD for ...
1
vote
2answers
963 views
EmberData: Two models related with hasMany relationships
I have an application logic that requires two models to have reciprocal hasMany relationships. As an example, imagine a set of GitHub issues that can be tagged with several labels.
I am trying to use ...
6
votes
1answer
494 views
failed to get embedded's object property using ember.js with ember-data
I'm new to ember, and try to understand how it works.
I've defined a store with a fixturesAdapter as adapter (rev 7).
I've defined two models:
App.Tag = DS.Model.extend({
name: ...
0
votes
1answer
140 views
my computed values stopped working with latest version of ember-data.js
I am getting the following error when i change attributes of a model.
Uncaught Error: <DS.StateManager:ember466> could not respond to event setProperty in state rootState.loading.
Here is the ...
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', ...
2
votes
2answers
602 views
How to use DS.Store.registerAdapter
I try to use the 'adapter per type' feature of ember-data. Not sure whether I'm doing something wrong or if it's a bug in ember-data. Basically i thought it would work like this:
Person = ...
0
votes
1answer
208 views
Load but don't send embedded objects
Say you have the following model:
App.Item = DS.Model.extend({
owner: DS.belongsTo('App.Person', {embedded: true})
})
This means you can load this embedded association, but it also means that ...
3
votes
1answer
549 views
How to fetch embedded objects in one request with ember-data and couchdb-adapter
I am working on an application using ember.js and a couch DB backend. So far, i used ember-resource as database driver, but I am considering switching to ember-data, since this seems to be more ...
0
votes
3answers
1k views
Getting latest build of ember-data [closed]
Building ember-data requires Ruby 1.9. Installing this version of Ruby on MacOS Mountain Lion is not a trivial task, so I'm not keen on trying this. I wonder if anyone else could perform this build ...
0
votes
0answers
245 views
RESTAdapter for revision 6
With the new Revision 6 of Ember-data the RESTAdapter doesn't seem to work. When I do MyApp.MyModel.find() I only get an array with the last post, but my server returns an array of all posts. It works ...
3
votes
1answer
325 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. ...
1
vote
1answer
172 views
Models won't load from store
For the application I am developing Ember.js + Ember Data seems like a good solution. However I can not even get a simple version using both libraries to work. The problem is that the data provided by ...
5
votes
1answer
395 views
Using a slug instead of an id
I'm trying to load an ember-data User model from a route than can accept either a username or an id.
I modified the RESTAdapter find method to pass the id from the JSON response to didFindRecord, but ...
1
vote
1answer
438 views
Ember-data validation and associations
This seems to be coming up over and over for me and I wanted advice on how to deal with it. Pardon me as I write the examples in coffeescript.
App.Post = DS.Model.extend
title: DS.attr('string')
...
1
vote
1answer
434 views
How to avoid missing mapping for 2-level deep associations?
I have 3 models in a hasMany chain.
E.G. Gallery -> Image -> Comment
Returning both the selected Gallery and the Images in it in a single json response works as expected. The backend is a Rails app ...
4
votes
1answer
644 views
Ember associations and nested URLs
We're implementing a feature using Ember data and Rails and keep hitting a snag. We're not sure if it's a problem with our code, a bug with Ember or Ember data or just that we're not getting it ...
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 ...
19
votes
3answers
2k views
How should errors be handled when using the Ember.js Data RESTAdapter?
ember-data.js: https://github.com/emberjs/data/tree/0396411e39df96c8506de3182c81414c1d0eb981
In short, when there is an error, I want to display error messages in the view, and then the user can 1) ...
0
votes
1answer
102 views
Where can I find the Ember Data Guide mentioned in Breaking_Changes.md for revision 5
In revision 5 there is mention of a Ember Data Guide but the link to it does not work. Any know where I might be able to find it?
Thanks.
1
vote
1answer
617 views
How to maintain data changes after a transaction is comitted, including setting a belongsTo relationship
I am have difficulty setting a belongsTo relationship using ember data. I have a jsfiddle example to demonstrate. My original problem was that I was getting the following error:
Uncaught Error: ...
1
vote
1answer
123 views
Acces parent record from an embedded object
Is there a way to access to the parent object of an embedded model object ? For example :
App.Person = DS.Model.extend({
name : DS.attr('string'),
emails : DS.hasMany('App.Email', { embedded: ...
1
vote
1answer
587 views
Ember store refresh issue! Error: could not respond to event didChangeData in state rootState.loaded.updated.uncommitted
I am trying to load my data using a separate query to the server after the records get dirty in the store. The updated values are sent to the server and relevant actions are performed using a custom ...
3
votes
1answer
587 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 ...
1
vote
1answer
304 views
Two way one to one associations in Ember Data
In my application I'm having two way 1:1 relationships between models. When trying to set an association between them i get ...
Uncaught RangeError: Maximum call stack size exceeded
... and the ...
2
votes
2answers
290 views
Automatically loading models referenced in a template with ember-data
I would like to have model binding relationships loaded automatically when referenced in a template. For example, if I have models like this:
App.User = DS.Model.extend
name: DS.attr 'name'
...
6
votes
1answer
883 views
Does ember-data really support nested urls?
I have a top level session object that can have many speakers under it.
My REST ish endpoint allows me to get all the sessions like so
/sessions/
I can get all the speakers for a given session like ...
3
votes
2answers
634 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 ...
1
vote
2answers
504 views
How do you use ember.js with external (non-local) api endpoints?
Has anyone had success working with a front-end only applications with Ember.js and consuming endpoints from an external host? If so please share your experience.
Here are a couple of options.
...
0
votes
0answers
308 views
could not respond to event didChangeData in state rootState.loaded.created.uncommitted
I'm getting this error when creating a record as well as loading fixtures
through the adapter. It works okay when I put the create method function in a
timer.
See fiddle.
Any ideas?
4
votes
2answers
745 views
Why do I need to “reopenClass” to set the url for an ember-data model?
I found that if I try to include the url in the original definition of an ember-data model it blows up in my REST adapter but if I simply "reopenClass" it's fine.
What is the technical reason behind ...
1
vote
1answer
926 views
What json structure should the ember-data “findMany” have to sideload correctly?
I'm doing my first hasMany relationship with ember-data and hit the always fun
"Uncaught Error: assertion failed: Your server returned a hash with
the key 0 but you have no mappings"
This ...
1
vote
0answers
143 views
How do you setup Ember.Router to work with Rails custom routes?
From the below code, how do you call a custom route "dynamicSearch" of my Rails AssetsController from the Ember.js Router?
Rails side:
Controllers > assets_controller.rb
class AssetsController < ...
7
votes
1answer
809 views
Ember Data: Saving a model with an association in one request
I have two ember models with a relationship like this
App.Foo = DS.Model.extend
bar: DS.belongsTo("App.Bar", embedded: true)
App.Bar = DS.Model.extend
primaryKey: "blah"
blah: DS.attr ...
2
votes
0answers
236 views
Ember data batched loading
I have a page with many records on it and it's slow to load. What I'd like to do is load the records in batches.
Let's say there are 1000 records in total and I want to load 30 at a time. Looking at ...
0
votes
0answers
198 views
Emberjs data testing qunit
Hello I created test suite in play framework for emberjs with ember data by copy-paste with modification test suites with ember-data on github.
My problem is that Ember.js doesn't resolve computed ...
0
votes
1answer
1k views
why ember-data embedded association always send an ajax request?
I'm trying to use Ember-Data and the provided RESTAdapter to load an object like this :
{
"videos":[
{
"id":"5062f3c30959c6c732000005",
"tags":[
...
6
votes
1answer
223 views
Return count of total rows in ember data find or findAll request
I need to know how many rows of specific resource (App.User) exists in total? I tried to return it in response, but Ember complains about not mapped properties and is expecting only array of records ( ...

