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

learn more… | top users | synonyms (1)

0
votes
0answers
17 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
0answers
33 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
42 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
39 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
21 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
46 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
47 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
50 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
25 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
53 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
22 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
26 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
26 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
37 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
36 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
59 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 ...
0
votes
0answers
32 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
31 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
37 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
33 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
71 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
41 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
73 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
32 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
98 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
64 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
41 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
43 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
41 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
18 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
32 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
34 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
15 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
48 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
46 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
vote
2answers
54 views

How to re-render a template using a cached property in ember.js?

I have a route that finds a day object using day of week //assume I have a configuration model for 7 days (1 for each week day basically) var day_of_week = ev.date.getDay() + 1; var model = ...
2
votes
0answers
36 views

How should 'conventional' Ember-friendly APIs be designed for creation of mutually dependent parent and child models?

I'm building a Rails app with an Ember front-end. I'm trying hard to ensure that the API is as plain, vanilla, RESTful and conventional as possible, in the Rails/Ember spirit. I'm confused as to how ...
0
votes
0answers
56 views

Ember without Ember Data - Using controllerFor not setting model

Im in the process of switching to a more Discourse style approach to data in my Ember app because i need to support api calls to full urls. /clients/xyx/claims/123 and not just /claims/123. I had most ...
0
votes
1answer
49 views

Ember.js loading simple data from API

So, I have a simple page with Ember.js where i'm trying to load data from rest api. Api is provided by apiary.io and returns the following simple data {"semantics": [ {key : "11111", name : "Block ...
0
votes
1answer
51 views

Ember js handling API endpoints with nested resource URLs

A portion of my API is setup as follows: /v1/place/:place_uuid - retrieve a place /v1/place/:place_uuid/cart - retrieve a shopping cart object associated with that place My routes are setup ...
0
votes
1answer
70 views

Finding record by custom primaryKey

My model is defined as follow: App.User = DS.Model.extend({ primaryKey: 'username', username: DS.attr('string'), name: DS.attr('string') }); My custom Adapter map: ...
1
vote
1answer
76 views

How to use two different adapters at the same time in Ember.js application?

I'm using basic adapter for one API: App.Store = DS.Store.extend({ revision: 12, adapter: DS.BasicAdapter.create() }); Lets say I need to retrieve some data from an other service but using ...
0
votes
1answer
51 views

Getting TypeError: App.Router is undefined after building ember.js

Posting here as requested original post can be found here Hello, I would like to build ember.js using Ubuntu 13. I have cloned the official Github project, cd into the project and as described in the ...

1 2 3 4 5 16