ember-data is a data persistence extension for the Ember.js framework.
2
votes
2answers
89 views
ember-data observe record array isLoading/isUpdating/hasUpdated?
I am trying to display an list of calendar events by week. The kicker is I am trying to reuse data already in the DS.Store. This is the code that does it and for the most part it works.
The problem ...
2
votes
1answer
50 views
How do params work in Ember, especially when you have nested resources?
I am using ember with rails, and I have not had success trying to pass the parent_id param to get items from a database using the parent_id. The only way i have been able to retrieve has_many items of ...
2
votes
0answers
69 views
Deleting records with Basic Adapter
I'm looking at implementing Model.sync.deleteRecord() for use with Ember-Data Basic Adaptor.
According to the docs, adapter must call didDeleteRecord() once record has been successfully deleted from ...
2
votes
0answers
91 views
Should events be propagated to records in hasMany relationship?
I have the following relationship between two DS.Model classes:
App.DocumentType = DS.Model.extend
...
propertyTypeJoins: DS.hasMany("App.DocumentTypePropertyType")
App.DocumentTypePropertyType ...
2
votes
0answers
36 views
Can't set Default Values For Number and String Types in Ember Models
I'm trying to set default types in an Ember Model, but only some types work:
createdDate: DS.attr('date', {defaultValue: new Date()}) // Works
createdDate: DS.attr('boolean', {defaultValue: ...
2
votes
2answers
105 views
EmberJS: model 'isLoaded" but I can't access its properties
Somewhere in my code, I hit a bug. I put a breakpoint to try and see what is happening. When I inspect the object "foo" in the console I get:
foo.toString() > "<App.Foo:ember661:174009>" // ...
2
votes
1answer
131 views
Ember.js app offline behavior
I have an ember app that interacts with a rails app using the ember-rails gem.
I would like to use the localStorage adapter to store a list of products once they have been downloaded from the server ...
2
votes
1answer
153 views
Easy way to initialize new ember-data model from json data?
I wan't to get initial data for a new model from server, eg. from url /users/new.json which responds:
{"user":
{
"default_value1": "foo",
"default_value2": "bar",
"embedded_foo": ...
2
votes
1answer
91 views
Ember.js Data Conflict Resolution / Failing on Conflict
If using Ember.js with the ember-data REST adapter, is there some sort of conflict resolution strategy for handling persisting data to the server?
At the very least, for my case, failing and rolling ...
2
votes
1answer
410 views
Ember Data and mapping JSON objects
I have truly searched and I have not found a decent example of using the serializer to get objects from a differently formatted JSON response. My reason for not changing the format of the JSON ...
2
votes
1answer
227 views
Ember.js Recommended Way to Remove Items From a Collection and Persist to REST
I've followed the PeepCode tutorial on Ember.js, and am extending it to remove items from the tab. I'm also implementing a simple RESTful interface on the server to persist changes, and am using ...
2
votes
1answer
105 views
Callback on transaction or commit()
How can I achieve something similar like that?
App.saveManyDifferentModels()
App.store.commit(function() {
$("#spinner.gif").hide()
});
2
votes
1answer
100 views
Where should faux-persisted state live in your ember.js web app?
I was reading the excellent Getting started with ember.js post by @twbrandt recently and found his explanation of what your controller/view/model/router/template "should be responsible for" ...
2
votes
0answers
159 views
ember data computed property not working on nested association
I have a simple datamodel:
a Leg, has many Players, who have many Turns:
App.Store = DS.Store.extend({
revision: 11,
adapter: 'DS.FixtureAdapter'
});
App.Leg = DS.Model.extend({
players: ...
2
votes
1answer
85 views
ember data in standalone cli node.js app
This might be sort of a dumb question, but is it possible/advisable to use ember data without ember for a command line node.js app I'm writing? I already have a set of Ember Data models in my ...
2
votes
1answer
213 views
registerAdapter: register different adapter for different types
I'm trying to use different adapters for different types. RESTAdapter and FixtureAdapter. Normally, we can register a different adapter for a specific type such as:
...
2
votes
1answer
117 views
What is the correct way to save a modified record (EMBER 1.0.0-PRE.4)
I have developed a small test application. Loading the person records
works as expected. I can modify firstName and lastName.
In the personedit template I have a action which triggers the save method ...
2
votes
1answer
139 views
How should I send POST requests using SSL using ember-data?
I'd like to create a user in my ember app and send the info over to the server using SSL. I'm not sure how to do this. Can I just set the url of my model to an https address? From what I'm reading ...
2
votes
0answers
277 views
ember Uncaught Error: assertion failed: Emptying a view in the inBuffer state
I get this assertion when run the code below:
Emptying a view in the inBuffer state is not allowed and should not
happen under normal circumstances. Most likely there is a bug in your
...
2
votes
0answers
111 views
HasMany associations update
How to update hasMany associations in record?
I tried this approach:
record.get('childrenRecords').clear();
newChildrenRecords.forEach(function (child) {
...
2
votes
0answers
454 views
ember-data custom adapter createRecord model is empty
I'm trying to create a custom adapter according to the docs and I'm facing a problem that the model that is being passed to createRecord is an empty ember-data object (tried it with ...
2
votes
2answers
206 views
How can I give Ember Data model a TTL and reload it after it expires?
If the application is supposed to be used over a longer preiod of time where mutiple users operate over the same data, it might happen that the things one user has in his local cache don't exist ...
2
votes
1answer
188 views
How do I load pushed record updates using Ember-Data without conflicting with an inFlight transaction?
My Ember/Ember-Data/Rails application pushes data down to the client using WebSockets. I'm adding the pushed data to the store using Ember-Data's loadMany method.
However, if any of the pushed ...
2
votes
1answer
244 views
ember-data - record not found (404)
How are people handling 404 errors from ember-data?
At the moment, the rest-adapter handles errors in this way:
didError: function(store, type, record, xhr) {
if (xhr.status === 422) {
...
2
votes
0answers
121 views
Updating multiple objects with ember-data and non-rest action
Lets say I have a Customer who hasMany products
The api has a PUT: /customers/:id/cancel that cancels the customer and also cancels all the products and then returns the customer and the products for ...
2
votes
2answers
263 views
Building documentation for Ember Data
There is a lot of documentation in Ember Data source code. I wonder, how I can build the Ember Data documentation? I tried,
bundle exec rake docs
bundle exec rake docs:build
bundle exec rake ...
2
votes
1answer
320 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. ...
2
votes
2answers
285 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'
...
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 ...
2
votes
1answer
98 views
Ember-data store PUT request
Is there any way to include the 'has many' models in the 'put' request sent using ember data-store REST adapter?
2
votes
0answers
114 views
Ember-Data Transformed Value not Updated With Bindings
Here is my transformer:
DS.attr.transforms.category = {
from: function(serialized) {
return OO.Category.create({
tag: serialized
});
},
to: ...
2
votes
0answers
186 views
Handle partial or summary object list returned by GET /models using ember-data
For a Resource Post,
How to handle following scenario.
GET /posts returns array with summary only (i.e. title, commentCount)
but GET /post/:id returns full object. (i.e. title, content, ...
2
votes
0answers
669 views
Emberjs/data Object “has no method '_create'”
I am trying to use Ember and Ember/Data to display simple JSON returned from REST API.
Here is my js:
window.ManageClients = Em.Application.create();
ManageClients.store = DS.Store.create({
...
2
votes
0answers
151 views
Notify Parent hasMany list when child changes its parent
Say i have a relationship Parent (1) <-> Child (0..n) and corresponding models
Zik.Node = DS.Model.extend({
id : DS.attr('number'),
name : DS.attr('string'),
leafs : ...
2
votes
2answers
399 views
IsValid and Ember-data
Can somebody tell me the purpose of isValid in ember-data.
I am trying to use this example to display either error messages or success messages to the user:
...
2
votes
0answers
240 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 ...
2
votes
1answer
567 views
Is there a way to post embedded objects back to the API with Ember.Data
I'm using Ember.Data with the REST adapter talking to a Rails API.
I have a product that can have multiple price options (Wholesale, Retail, etc) and am wondering if there is a way to tell Ember Data ...
2
votes
2answers
286 views
How to detect dirtyness when removing item from a store?
I have a store with items retrieved from server. I would like to detect changes to alter UI accordingly.
I am able to detect dirty records (new, updated), but I don't know how to detect deletion, ...
1
vote
2answers
636 views
ember-data initialization error: “Uncaught TypeError”
I have just downloaded ember-1.0.0-pre.4.js and ember-data-latest.js and get the following error upon the initialization of the app:
Uncaught TypeError: Object Ember.Application has no method ...
1
vote
2answers
958 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 ...
1
vote
1answer
910 views
Ember.js order hasMany children
I have a item model and each item can have many items. This can be many levels deep.
I have this jsfiddle http://jsfiddle.net/rmossuk/xmcBf/3/
how do I change this to be able to have multiple ...
1
vote
3answers
2k views
Ember Data - Uncaught TypeError: Cannot read property 'find' of undefined
Using the latest (from GitHub today) Ember and Ember Data, this code is giving me an error - Uncaught TypeError: Cannot read property 'find' of undefined at ember-data-latest.js:3170
...
1
vote
2answers
1k views
Ember Data populate records
need help to get Ember-Data runnig with Zend Rest.
At first, I'm familiar with Zend Framework, so the Rest Adapter was easy to setup.
Requests by telnet show it works and response also well formed ...
1
vote
2answers
548 views
How to undo changes to a model?
Is it possible to revert the model to a clean state? I mean undo all the changes to its properties and mark the state as being clean?
1
vote
2answers
224 views
Ember.js current_user - accessing global variable from controller
I am baffled by a seemingly simple ember question. I am using active_model_serializers meta data serialization to serialize my rails current_user method from a rails controller, then extracting and ...
1
vote
1answer
211 views
What's the proper way to access parameters from within Ember.Route. setupController?
Ember.Route.model has access to the params variable, but Ember.Route.setupController does not. This is troublesome for me, because my path has multiple dynamic segments, and I need to use all of them ...
1
vote
1answer
221 views
In Ember Data, how do I find only records that have been loaded?
According to the documentation:
http://emberjs.com/guides/ember-data-lifecycle/
Ember data will automatically look to the persistent layer for a record if it's not loaded, how do I only find or even ...
1
vote
1answer
1k views
How to add objects to a hasMany relationship with ember data
I have these two models:
App.Items = DS.Model.extend({
provider: DS.attr('string'),
name: DS.attr('string'),
description: DS.attr('string'),
});
App.Baskets = DS.Model.extend({
...
1
vote
2answers
312 views
Can `insertNewline` invoke a transitionTo?
Sample code for my question is here.
It's a simple Ember app that displays the SearchView containing a TextField by default.
When the user enters some text and hits Enter, I want to transition to ...
1
vote
1answer
129 views
Ember.js Object #<Object> has no method 'resolve' (jsFiddle inside)
I have code (http://jsfiddle.net/bug0r/94h3a/17/)
There is error when data loading by rest.api - Object #<Object> has no method 'resolve'
Could you help to find an error?
ember - ...
