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

learn more… | top users | synonyms (1)

0
votes
0answers
44 views

Tristate checkbox in ember

I have to implement a tristate checkbox in ember quickly so I was wondering if someone can give me a pointer to an implementation of tristate checkbox in ember?
1
vote
1answer
173 views

How to setup QUnit data for ember-data revision 12

Before revision 12 I would simply do the following to create an object and it's associated "hasMany" relationship test("findMany generates http ...", function() { store.load(Person, {id: 9, ...
0
votes
0answers
39 views

How to work with aggregated JSON?

I wonder what is the right way to do this in ember/ember-data: the backend delivers aggregated data at /dashboard. Imagine this JSON answer: { "nice_projects": [{ "id": 1, "name": "project ...
0
votes
0answers
99 views

Handling nested objects using ember.js

I can't seem to get persisting of nested objects. Nor do I know what the best approach is. Here is what I have: My controller: App.RecipesNewController = Ember.ObjectController.extend({ create: ...
0
votes
1answer
32 views

Leading character stripped off of API call

I am attempting to setup a REST model and have a problem that is completely befuddling me: the API call that is generated seems to remove the first letter of the model and therefore is unable to ...
0
votes
1answer
103 views

What Does bulkCommit Mean In The Context Of Ember's RestAdapter?

Ember Data's DS.RESTAdapter includes a bulkCommit property. I can't find any documentation about what this does/means, other than some vague references to batch committing vs bulk committing. ...
0
votes
1answer
47 views

Ember Data and object graphs

I'm a completely new to emberjs but excited to get in and play around. One thing I'm struggling with is ... can you load a JSON object that has an object graph depth of more than 1. What I mean is is ...
2
votes
1answer
265 views

Ember.js data - basic adapter does not implement findAll method?

With the basic adapter App.Store = DS.Store.extend({ revision: 12, adapter: 'DS.BasicAdapter' }); I have: 'Uncaught Adapter is either null or does not implement findAll method'. And ...
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: ...
1
vote
1answer
186 views

What is the best way to modify the date format when ember-data does serialization?

In my ember-data adapter I use this line to serialize my model var data = record.serialize(); But I've noticed my models with a date type ... App.Foo = DS.Model.extend({ start: ...
2
votes
2answers
107 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
2answers
244 views

How can I upgrade ember-rails' version of ember-data to revision 12?

I've got ember-rails updated to master: bundle update ember-rails Updating git://github.com/emberjs/ember-rails.git Fetching gem metadata from https://rubygems.org/......... .... Using ember-rails ...
1
vote
1answer
194 views

Save foreign key to other Model with hasMany relation

I'm having the following problem. In my app I have a screen to make a new Site. But when I save the new site via an action on the controller, the languages-property isn't sent with the POST-request ...
0
votes
1answer
61 views

Ember js and multilevel relationships

I'm trying to a basic app displaying a drive , its folders and files (dive hasMany folders hasMany files) ... when implemented using handlebar templates all relations loaded fine but when I created ...
0
votes
1answer
62 views

One Observer called multiple times in emberjs

I actually play around with ember js and I'm confused, about the observer behavior. App.ProjectView = Ember.View.extend({ modelChanged: function() { console.log('modelChanged to: '); ...
0
votes
1answer
117 views

emberjs in the console I see that records are created but they are not displayed by handlebars

First many thanks to Mike Grassotti, for helping in the IRC. He helped resolved the bugs with the save method. My problem is that in the console I see that records are created but they are not ...
1
vote
0answers
64 views

What should an ember-data REST server API return?

I'm having weird update errors on some routes so I just wanted to sure that it wasn't something fundamental at this level. At the moment I do this: Create POST /plural 201 ...
0
votes
2answers
48 views

Load single objects from “index” allways

Using the latest revision of Ember-Data and the RESTAdapter, is there a way of doing the following? I have a resource called App and a API that responds to /apps by returning the correct JSON (with { ...
0
votes
1answer
37 views

{{lineItem.product.name}} doesn't render the product name

An Invoice hasMany lineItems and a lineItem belongsTo a Product. I'd like to iterate to all lineItems of an invoice and render a table with the product name: <script type="text/x-handlebars" ...
1
vote
1answer
52 views

should a computed property be declared in a model or controller?

Having the following User model: Sks.User = DS.Model.extend firstName: DS.attr("string") lastName: DS.attr("string") where should the 'fullName' computed property be declared? fullName: ...
1
vote
1answer
44 views

Ember Data, Relatioships, output of attribute

I have two entities with fixtures data: User and Role. When I load a User, it contains one Role. I would like to show the name of the role. Here is relevant code: App.User = DS.Model.extend({ ...
1
vote
1answer
74 views

How Should I Check if an ArrayController's Content isDirty in Ember

In my application's templates I'm using: {{#if exampleModel.isDirty }} {{else}} {{/if}} ... to show different Ui depending on whether the View's Model isDirty. This works nicely. However I ...
0
votes
1answer
168 views

why am i seeing “error while loading route” with ember?

ember rc1, ember-data rev 12. all my other routes load correctly, unsure why i'm seeing this error. it happens when i try to access the show route i.e. /files/groups/5. the index route renders fine. ...
0
votes
1answer
93 views

What Does This Ember Exception Mean?

I'm getting the following error when creating a new record/model: Uncaught Error: Attempted to handle event `willSetProperty` on <App.NewsItem:ember361:null> while in state ...
0
votes
0answers
59 views

What are the current issues with Ember Data?

I've been doing a bit of reading lately on ember.js, and one item that keeps coming up is that there are "issues" with ember-data, and it is "not production ready". While I keep seeing that, I've ...
1
vote
1answer
73 views

How to reload data every x seconds?

I'd like to pull a set of data every couple of seconds (no need to discuss the pros and cons of pull vs. push here). As far as I understand ember-data that should be done with reload. Here is my ...
1
vote
2answers
204 views

trouble with sideloading a hasMany relationship in ember-data?

this is ember rc1 master as of march 25, and ember-data rev 12. i can't get a Model's hasMany to sideload - that sideloaded data doesn't materialize in the store. using the default RESTAdapter. ...
2
votes
1answer
305 views

Many to Many Relationships with Ember, ember-data and Rails

I am having an issue with trying to save many to many relationships in Ember.js using ember-data and rails. The association works fine on the ember side of things, however when I try to commit the ...
0
votes
1answer
81 views

Detecting when Ember.Data request fails

I have an app which allows users to submit a post to Twitter. It's using Ember.Data with a Django Rest Framework back end. A user posts a Message, which goes to the server, then submits to Twitter, ...
1
vote
1answer
119 views

how to communicate with Rails in Ember

Let me explain shortly what I mean. I'm writing an app that makes use of Ember and Rails. Every employee can give other co-workers a kudo. He can't know how many others received. I can only know how ...
3
votes
2answers
198 views

Ember model reloading in interval

I have a User model, which has latitude and longitude properties, which are used to show current user location on map. App.User = DS.Model.extend({ firstName: DS.attr('string'), lastName: ...
0
votes
1answer
197 views

emberjs and ember-data -creating record via form submission returns undefined

I have this jsfiddle. Everything works excepting that i can't create a new comment by submitting the comment's form. when i submit a form the console shows undefined. What I hope to achive is to ...
0
votes
1answer
99 views

Ember Data Mapping Missing In Newly Created Model Hash

I have an Ember app tied into a Rails API. My Model is defined like this: NewsCMS.NewsItem = DS.Model.extend({ title: DS.attr('string'), date: DS.attr('date'), body_html: DS.attr('string') }); ...
0
votes
1answer
220 views

Ember.js belongsTo relationship undefined but hasMany array populated

Using ember-data with Django REST adapter. Having trouble setting content of controllers based on the model received's relationships in setupController hooks I put break points in and they went in ...
1
vote
1answer
212 views

Ember JS: Remove record from hasMany relationship and update view

I'm trying to delete a record from store and automatically update the view that lists the items, but so far I had no luck. I tried tweet.deleteRecord() in the delete method of the controller but it ...
1
vote
0answers
64 views

Modifying HEAD elements with Ember.js — canonical url link

I have a URL structure that provides keywords but ignores them. EG: /album/could-be-anything/12 Which will look up an album by the id 12. But since the keywords could be modified, in order to ...
0
votes
1answer
163 views

How to render hasMany relationship data?

How can I get the following example code to render not just the person data but also the phone numbers of that person when rendering the URL /#/persons/1. I try to loop though the phone numbers with ...
0
votes
1answer
84 views

Ember event for best discarding changes between same Route

I have an Ember list and an edit form. Each time the selected item of the list changes the edit form discards any changes and loads new model. My problem is that there is no way to discard changes ...
1
vote
0answers
199 views

creating record with the ember-data basic-Adapter

I have a few questions concerning using the basicAdapter api to createRecord. Assuming I have two models as shown below, and I want to create the parent record, wait for a response and then create a ...
2
votes
1answer
149 views

Ember.js Search Model Verbs

The tutorials & guides that I've found suggest that Ember.js models are very data centric, in that you have data in the browser that is persisted to the server and/or a model is filled with data ...
1
vote
1answer
57 views

EmberJS: why are destroyed records committed back to the server?

Sometimes in my Ember app I create some records with createRecord, but I don't want to store all of them on the server. So I call destroy on the objects I don't need before calling store.commit(). ...
2
votes
1answer
152 views

ember-data how to reaload/sort store records

Is there a way to reload whole store in ember-data? Or to sort items inside? It should go like that: - user clicks "add" button - new record is added - store is commited - user is transmited ...
5
votes
2answers
256 views

How to handle 404 of Ember Data in route?

In my route I have a method that tries to request a list of models from the server model: -> App.MyModel.find projectId: (@modelFor "project").id Now obviously sometimes this might ...
0
votes
0answers
73 views

How should I establish references to Ember Data models based on association attributes?

I have two Ember models: Event and Schedule. Each event has a schedule, which includes a start time. Events will be presented with a calendar display: if the user clicks a given day, the events ...
0
votes
1answer
49 views

How to refresh the return value from myHelper method?

I have following handlebar and helper method Handlebar {{myHelper grp.group_name optionBinding=data}} where data looks like => Object {Eastern Group: 1} and grp.group_name = 'Eastern Group' ...
2
votes
1answer
94 views

handlebars template won't update to reflect the computed property after dynamically removing an entry

Here is the basic setup: I bind an array of ember-data models to my handlebars template using a simple computed property Before I fetch the models via xhr I prepend a few based on some configuration ...
0
votes
1answer
98 views

Ember.js different resources in one namespace

Cheers! I have to different resources in one namespace in my rails back-end side: namespace :api, defaults: { format: :json } do resources :users, only: [:show] do collection do ...
1
vote
0answers
178 views

Ember-Data rev. 11 <-> Error: XML instead of JSON as content type

Why is ember requesting XML instead of JSON? XML Response according to firebug: XML-processing defect: No element found address: moz-nullprincipal:{664ded3f-7063-4f92-b404-3895f595c584} Row No. 1, ...
7
votes
2answers
307 views

Ember-data in a non-RESTful environment

I would like to use ember-data in a project I am building, but the API I am working with does not follow REST conventions. For example, all the HTTP requests are POST and the naming conventions of ...
0
votes
0answers
67 views

How to eval an Controller Object's key/ value in handlebar template where key is dynamic?

I have a controller which has an Object variable 'count_division' which keeps a count of different division for a group, how can I access that in handlebar ? Controller App.WatchlistController = ...

1 3 4 5 6 7 16