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

learn more… | top users | synonyms (1)

1
vote
0answers
12 views

Observe a ManyArray property of an Ember Data model without triggering a load?

I've got a library model in my application, and it's got a hasMany attribute called books. Initially, the books for each library aren't loaded. What I'd like to do is detect when they are loaded, and ...
0
votes
1answer
23 views

Exception with Computed Property on Ember Data Model using RESTAdapter

So I have basically the following two models in an ember.js app using ember data and the RESTAdapter. App.Job = DS.Model.extend({ transactions: DS.hasMany('App.Transaction'), state: function() { ...
0
votes
1answer
10 views

Ember data model created with createRecord with no params does not appear

We have an example ember app where we CRUD recipes. For the route where we create a new Recipe, if we pass attributes into createRecord like so: Cookbook.RecipesNewRoute = Ember.Route.extend model: ...
0
votes
0answers
22 views

ember-data: server side code for removing an associated object

I 'm working with revision 12 of ember-data RESTAdapter and using the rails-api gem. I have these models: App.TransportDocumentRow = DS.Model.extend, productName: DS.attr 'string' ...
0
votes
1answer
31 views

Detect model/URL change for Ember Route

My EmberJS application has a ProjectRoute (/project/:project_id) and a corresponding ProjectController. When viewing a particular project, users can edit its properties, and I'd like the project to ...
0
votes
0answers
22 views

Dynamic API namespace change

I've got an application which needs to change the API namespace dependent on the state. To illustrate the point, here are some api endpoints: /groups (lists all groups) /foo/users (lists all ...
0
votes
0answers
19 views

Uncommitted record still present after rollback()

I have the following in an ObjectController and have verified that both actions are called correctly: setup: -> transaction = @get('store').transaction() post = ...
2
votes
1answer
28 views

Ember-Data objectAt() to get first result does not work

I'm populating two templates with data: the first template has detailed information about the model (called Slider), and the second template has a list of the last 5 sliders. The problem is that when ...
0
votes
0answers
29 views

ember-data rest api customization

I've got rails models that look something like class Article < ActiveRecord::Base has_many :versions has_one :primary_version, class_name:"Version", foreign_key: :primary_id delegate ...
0
votes
1answer
41 views

Can't Retrieve Model Data

I'm starting to use Ember.js with Rails 3.2.13 through the ember-rails gem. I am unable to access data through the browser console with the following command: var posts = App.Post.find(); It ...
0
votes
0answers
52 views

Ember.js Polymorphic relationships not working

I'm having a problem with polymorphic relationships using the latest version of ember-data. Basically, ember's not passing the call to the polymorphic model. Here are my models: App.Movie = ...
1
vote
1answer
42 views

Is there a way to get access to the Ember model within a nested view?

I'm trying to get access to the model for an ember model object that I'm currently editing. I'm rendering a view: {{view App.RemarkTextField valueBinding="content"}} And here's the view: ...
1
vote
1answer
26 views

Embedded belongsTo to an unsaved record creates two POST request

I got an issue when i try to add an embedded belongTo to an unsaved record. When committing the transaction, I got two POST request. I don't know if I'm doing something wrong or not... Here's my ...
0
votes
1answer
55 views

Make ember-data use the URL that ember is loading for the REST request

On the system I am working on right now, I have had to try to tame ember-data a bit about how it does its REST request. The way that ember-data by default figures the URL for a certain request for a ...
1
vote
1answer
54 views

Rails-style polymorphic model in ember-data

If I have the following models in Rails, how would I represent this in Ember/Ember Data? class Attachment < ActiveRecord::Base belongs_to :user belongs_to :attachable, polymorphic: true end ...
0
votes
1answer
75 views

How to load Ember Data data when app starts?

As a follow up to my another question (I think this one is more specific) I'd like to ask you how can I load data when an app starts. I need some cache strategy. The data that is presented in our ...
0
votes
1answer
27 views

EmberJS: Updating property inside object

Little and strange issue. I have an array of objects. Here is my controller. AmbiantBox.AmbiantsController = Ember.ArrayController.extend({ myArray: [], fillData: function(){ //loop ...
0
votes
1answer
27 views

Get object from belongsTo relationship

Let's say I have some model like: App.Employee = DS.Model.extend({ name: DS.attr('string'), department: DS.belongsTo('App.Department') }); In my controller I can say var name = ...
0
votes
1answer
20 views

can I change rest model state without using .set()

I have model with custom attribute(array of objects). Like this App.Adapter.registerTransform('images', { serialize: function(value) { var ret = [] value.forEach(function(img){ ...
3
votes
1answer
65 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 ...
0
votes
1answer
24 views

ember-data, Reload model in rootState.error

I've got an ember model, it looks something like this (in coffee-script) App.User = DS.Model.extend name: DS.attr('string') age: DS.attr('number) becameError: -> #F it, i give up, ...
0
votes
1answer
31 views

EmberJS not displaying results from DS.RestAdapter

I'm new to EmberJS and can't seem to figure out what is wrong with my code. I've read and compared different example projects hoping to find the "missing link" so I'd appreciate a second set of eyes ...
0
votes
0answers
27 views

How to show last post inside Ember.js blog application “index”?

In the Ember video from http://emberjs.com/guides/, there is a sample blog application. When you go to the root of the site, you see the list of posts on the left side menu and a message like ...
0
votes
0answers
9 views

How to implement a textfield bound to another object with autocomplete?

I'm trying to port a small application (as a learning exercise) from Symfony2 to EmberJS consuming a REST api from Symfony2 using Ember-data. So, my problem: Let's say I'm creating a very basic ...
1
vote
0answers
41 views

ValueBinding not working while entering a route through transition

I have a resource defined as so: this.resource('settings', {path: '/settings'}); The route handler for the resource looks like this, App.SettingsRoute = Ember.Route.extend({ model: function() ...
1
vote
1answer
40 views

Reserved atribute names in Ember.js models

I have a Post model with the following fields: BlogApp.Post = DS.Model.extend({ author: DS.attr('string'), title: DS.attr('string'), preamble: DS.attr('string'), content: ...
0
votes
1answer
62 views

Ember-Data makes requests whenever it visits a route

Whenever I navigate from /users/1 to /users Ember-Data makes a new request. At this point it isn't a problem, but when I re-visit /comments route, the DOM elements are duplicated - it didn't happen on ...
1
vote
0answers
38 views

Trouble with transitionTo route after adding a new record using ember data and Parse

I'm learning ember and ember data by extending the example blog app from the ember guides page, and am having some difficulty implementing a "new" route for adding new blog entries. I'm using the ...
1
vote
1answer
32 views

Failed to get child records without embedded property (JSBIN inside)

I would get the records of my field children. Here the code: App.User = DS.Model.extend({ name: DS.attr('string'), online: DS.attr('boolean') }); App.List = DS.Model.extend({ name: ...
1
vote
2answers
46 views

Building single model in EmberJS

What is the correct way to define model and routing to build a model that can be used as Application Data. App.Router.map(function(){ this.resource("main", {path:"/"}); }); App.MainRoute = ...
0
votes
1answer
44 views

EmberJS Rails API security

Setup is an Ember frontend with a rails backend using JSON api. Everything is going fine but some questions do come up: How do I ensure only the emberjs application consumes the api? I wouldn't want ...
0
votes
1answer
35 views

How do you access the properties of a related EmberJS object in a template?

I have defined these two objects in Ember: App.Course = DS.Model.extend({ name: DS.attr('string'), students: DS.hasMany('App.Student'), courseComponents: DS.hasMany('App.CourseComponent') ...
1
vote
1answer
74 views

Sideloads data correctly (using custom adapter) - JSBIN inside

(JSBIN) (JSBIN output) So, I have the following model and I would to load my data: App.List = DS.Model.extend({ name: DS.attr('string') }); App.User = DS.Model.extend({ username: ...
0
votes
0answers
44 views

ember.js multimodel forms: what is expected from ember-data?

I have classic multimodel form: a transport document that has many transport_document_rows, as stated in my MODELS: App.TransportDocument = DS.Model.extend number: DS.attr 'string' date: DS.attr ...
1
vote
1answer
89 views

Ember Route model issue

I am following a tutorial by Brian Cadarella on DockYard. Building an Ember app with Rails-api backend. http://reefpoints.dockyard.com/ember/2013/01/09/building-an-ember-app-with-rails-api-part-2.html ...
2
votes
1answer
34 views

in Ember Data how do you manually load a Record with a hasMany association for unit testing?

i'm unit testing computed properties on a DS.Model . // a trivial example that i'm not actually testing App.ModelA = DS.Model.extend({ sub_models : DS.hasMany('App.ModelB'), lengthOfBees : ...
1
vote
0answers
25 views

Iterating over records of a model without knowing the model

Hi I try to create a gui for the all (ember-data) models used in my application. Thats my router: App.Router.map(function () { this.resource('config', function() { ...
3
votes
2answers
99 views

How to use multiple models with a single route in EmberJS / Ember Data?

From reading the docs, it looks like you have to (or should) assign a model to a route like so: App.PostRoute = Ember.Route.extend({ model: function() { return App.Post.find(); } }); ...
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 ...
1
vote
1answer
68 views

ember.js dynamic route issue

I have App.User and App.Contact models that are identical and inherit from a a base class: App.Person = DS.Model.extend({ firstName: DS.attr('string'), surname: DS.attr('string'), ...
1
vote
0answers
45 views

Long polling with EmberJS / Ember-Data?

I have setup a very basic first application where I can add and remove names from a list, which are then added/removed from a database using a RESTful API, using Ember-Data with the default REST ...
1
vote
1answer
50 views

How can i handle http requests failures with ember.js?

I've seen this question. Until nothing is done for ember-data failures handling what can i write to patch it, so that i can have a message if my request doesn't have a 200OK response? I'm looking ...
0
votes
1answer
45 views

reflection on all ember data models

In my app I want to create an interface to the server database. That's why I'm looking for a list of all models I defined in the app. Example: App.User = DS.Model.extend({ ...
0
votes
1answer
50 views

Ember-Data - Cannot read property 'find' of undefined

Just trying to get a fiddle set up to solve a few other issues, and I cant get passed what should be a simple setup. In older version of ember, I can get access to Fixture data using find(): ...
0
votes
0answers
22 views

How can I prevent a superfluous server call for a child association already successfully embedded in parent request?

I'm using Ember-Data w/ Rails API. I'm simultaneously persisting mutually dependent parent and child models. This is triggering two server POST requests: the first contains the parent data with nested ...
0
votes
1answer
34 views

How to use sortProperties: ['lastName']

I'd like to sort an Array or users which gets fetched by ember-data. I can't figure out to sort the array be lastName. The following code doesn't do the job. How can I fix it? app.js App.UsersRoute ...
0
votes
2answers
37 views

Trigger a model.get('transaction').rollback() from the deactivate hook in a route

How can I do a get('transaction').rollback() or deleteRecord() of the model in the deactivate route hook when the model is isNew? I can't figure out how to access the model from within the hook. ...
0
votes
0answers
16 views

Ember JS Request Paramters (not Request Payload) with POST/PUT

I'm wondering if Ember JS has support for POST/PUT requests using parameters rather than a payload object. Our backend is setup to receive POST fields, not deserialize objects. Here is what gets ...
0
votes
2answers
49 views

ember.js - unable to commit form data

I'm relatively new to ember.js and still having a painful time learning it. I am using the ember-rails gem, and Rails as a JSON API. First I just wanted to build something that would display a list ...
1
vote
1answer
47 views

Ember Data - re-commit current transaction

I have a button that submits the whole form to the server. Sometimes the server responds with errors and the users need to change/update the fields and submit again (common sense?). I'm using this ...

1 2 3 4 5 16