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

learn more… | top users | synonyms (1)

0
votes
1answer
118 views

Ember.js REST adapter handling different JSON structure

I'm using REST adapter, when I call App.Message.find() Ember.js makes call to the /messages to retrieve all messages and expect to see JSON structure like this: { "messages": [] // array contains ...
1
vote
1answer
46 views

Reacting on a finished Ember Data hasMany query

I use Ember 1.0.0-RC3 with Ember Data. I have the requirement to react efficiently when a hasMany relationship has been loaded successfully. My domain model looks conceptually like this: App.Person ...
0
votes
0answers
17 views

handling acts_as_tree or ancestry-like data in ember

I have an app that is like this: Menu MenuHeader - 1 MenuHeader - 2 MenuHeader - 3 MenuHeader - 4 MenuHeader - 5 MenuHeader - 6 MenuHeader - 7 I was thinking the ...
0
votes
1answer
63 views

Need a WORKING example of ember data

it's some days that I'm using emberjs and it's awesome, but I cannot get working the ember-data library! Seems that it doesn't send requests to server! Currently I have a backend with NodeJS, so I ...
1
vote
2answers
48 views

ember-data findAll returns 0 records on first request

Where is the best place to boot strap ember-data in order to fill the store: I am currently using revision 13 of ember-data. At the moment I am trying this in the ApplicaitonRoute: ...
0
votes
1answer
43 views

Camel case json when not using ember-data

I am plan use emberjs without ember-data, using Ember.Object. I use rails in back end. The json api rails give is using underscore, I want to change it to camel case in ember end. How to do it ...
0
votes
1answer
38 views

how to omit attributes in ember

To keep Ember focussed and to minimize data transfer, I "cached" some attributes on some models. Example: Because I only need the name of an author, I cache it to the book: In Rails: Book has_one ...
0
votes
0answers
62 views

Proper Handling of hasMany/belongsTo in Ember Data with Rails Persistence

I have an Ember.js app (1.0.0-rc.3) using Ember Data (Rev 12) to persist to a Rails backend. On the client side, I have two models that have a one-to-many relationship: App.Child = DS.Model.extend( ...
0
votes
0answers
46 views

Ember data Fixture adapter when loading a polymorphic belongsTo relationship

embedded "hasOne-belongsTo" relationship is not working with me when using polymorphic relation ship ? this is my code App.Message = DS.Model.extend({ created_at: DS.attr('date') }); App.Post = ...
0
votes
0answers
24 views

Ember Data Model - How to choose model class based on discriminator property (GeoJSON)?

I'm trying to model the GeoJSON spec using ember-data. I've found this gist and it is quite interesting. However, it doesn't support geometries other than Point. Consider this geoJSON example: { ...
2
votes
1answer
146 views

Model attributes null, even after mapping

I'm implementing a custom Adapter for non-conforming JSON data. The data is being pulled in, but the attributes are not being materialized. I have the following map: // map function has not been ...
0
votes
1answer
153 views

How to convert an emberjs Object to JSON in Ember 1.0.0-RC3

I need to pass JSON to jquery-fullcalendar and though I can pass use url as the source from which to fetch the JSON, I would prefer to convert data already loaded into ember-data store to JSON and ...
2
votes
2answers
69 views

Proper Ember.js resource route declaration

I'm trying to wrap my head around Ember resources but I'm hitting a wall. Looking at guides like Rails + Ember.js I see the preffered way of declaring a resource route is: ...
0
votes
1answer
99 views

ember-data hasMany and belongsTo (habtm)

I'm trying to learn new thing in ember every day and I'm stuck with ember-data and hasMany associations. used libs Rails 3.2.13 gem act_as_taggable_on ember RC2 ember-data (rev: 12), RESTfulAdapter ...
0
votes
0answers
25 views

Update several models in emberjs

Given an array of ids I would like to update several emberjs-data models at the same time. I know that to update one record you use reload() and then commit the store. Is there a way I can ...
0
votes
0answers
22 views

Ember data - Multiple types of server responses

I have a problem. When i use ember data with custom adapters, i face a problem as i have multiple servers with different responses from the server meaning one is conventionally JSON format other is ...
0
votes
2answers
47 views

Ember data sideloaded models ignored

I'm new to Ember, and am having a problem I'm not seeing duplicated anywhere else so I'm sure I'm doing something silly. I have these models: App.User = DS.Model.extend({ username: ...
0
votes
0answers
22 views

Ember Data Model State Flags Wrong?

I have a basic DS.Model. When I first load the application, this model is fetched from the server via .find(id). I have an observer on this model that watches the progression through various states of ...
0
votes
0answers
28 views

How do I use php with ember-data in a simple way?

I am just looking for a good example of fetching information from a server using the RESTful adapter and then passing it to the models
2
votes
2answers
34 views

How to implement complex queries with a REST api?

I'm building an EmberJS app using ember-data. Some of the functionality in my app requires quite complex queries. As an example, let's say I have three entities - students, teachers and classes. If ...
1
vote
0answers
33 views

“Success” or “Complete” method for Ember Data collection retrieval

In my app I have a 1 to M relationship modeled like so: Social.Message = DS.Model.extend({ created: DS.attr("date"), text: DS.attr("string"), metrics: DS.hasMany("Social.Metric"), }); ...
0
votes
0answers
51 views

embedded objects in json

As of today, the only way I've found to send objects in the same response to ember, is by sending all the objects I want to load in the same level as the main object, I do it using 'side load' in ...
0
votes
0answers
62 views

routes are not rendering results

I'm trying to figure out why my routes have stopped working. I recently upgraded to Ember JS RC 3 (from RC2) and after going through the changelog, I can't figure out why my routes stopped working. ...
1
vote
1answer
43 views

Using “needs” to createRecord in router with the need-object as property

I want to know how to create a model in the router with a property taken from the dependency given by the "needs"-function of the controller. I'm using ember-1.0.0-rc.3. Here is how my application ...
2
votes
1answer
66 views

Convenient way to inspect or introspect Ember Data source with DS.RESTAdapter

Is there a convenient way to inspect the raw model data being passed from external API to Ember js and Ember Data models? Something like the Ruby .inspect method. Is there any debug tool like this in ...
1
vote
2answers
67 views

Ember - Object has no method 'map'

I am going through the ember.js guides to learn Ember, and I am using the latest builds of ember.js, ember-data.js, and handlebars.js. I am able to successfully set up a basic nav that switches ...
0
votes
0answers
28 views

Updating cached client model with data received from server

My situation is the following: - I have a frontent User model that is most definitely loaded (and I assume cached) - I have a "/users//profile" API handler that returns that user with some additional ...
0
votes
1answer
44 views

Ember can't access the controllers scope in a didLoad callback when testing with Konacha

This code works perfectly on my browser: doLogin: (user) -> _controllers = @get('controllers') res = Cluey.Order.find({table: null, user: user.get('id')}) res.on 'didLoad', => order ...
0
votes
0answers
25 views

Can I set dynamicly options for relationships in emberJS?

I have this ember app in which I have two model, Node and Role. A Node has a kind property that could be either "Actor" or "Relation" And I have this N to M relationship between Node and itself ...
2
votes
1answer
175 views

How to create dynamic fixtures for ember integration tests using ember-testing (Qunit) via teabag

I have setup the rather awesome teabag https://github.com/modeset/teabag to run integration tests on my ember app. I am following the process that Erik Bryn discussed in his presentation: ...
1
vote
1answer
57 views

Ember Data findAll() not populating models?

new to ember js, and working on an app using ember-data. If I test with same data using FixtureAdapter, everything populates in the html template ok. When I switch to RESTAdapter, the data looks like ...
1
vote
0answers
34 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 ...
1
vote
2answers
79 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.JobsController = Ember.ArrayController.extend({ completedCount: function() { return 0; ...
1
vote
2answers
51 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
34 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
51 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
28 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
34 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 = ...
3
votes
1answer
55 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
51 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
47 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
88 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
61 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
48 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
100 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
131 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
123 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
34 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
47 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
27 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){ ...

1 2 3 4 5 18