0
votes
1answer
34 views

How to connect an instance of a view to a model object? Ember.js

I have an arraycontroller associated with a model. In my template I iterate over the elements in a handlebars template: <ul> {{#each controller}} {{view Emb.ListView}} {{/each}} ...
0
votes
0answers
50 views

Missing Updates on Observers?

Here's a Fiddle The template has several instances of the same subView with different bound properties. You can see when those bound properties trigger an event on their observers. Note that subViews ...
0
votes
2answers
49 views

How to add a new many relationship to parent model?

Disclaimer: I tried to make a jsfiddle of this, but without a public source for the RESTAdapter, I couldn't really make it work. I have a model with a hasMany array of child models. I need to add a ...
3
votes
1answer
107 views

Is there a way to use a different property name than what's in my JSON?

I have the following JSON (simple example): { id: 101, firstName: "John", surname: "Doe" } But I want my model to use lastName instead of surname. Something like this, maybe: ...
1
vote
1answer
53 views

Why is my object being added to both collections?

Please reference the following fiddle: http://jsfiddle.net/VkKX2/138/ (be sure to have your console open) TL;DR; I have 2 hasMany collections, and when I add a new model to one collection, it also ...
0
votes
1answer
53 views

Emberjs should I be using control for this

I'm attempting to build a FedEx style scheduling board. This would look just like a week view on a calendar but instead of days it would have driver columns. The trips should be able to drag and drop ...
5
votes
1answer
201 views

Understanding Ember Views

I'm looking for some clarification on views in Ember.js Coming from a rails background and I'm trying to ignore any preconceptions. From what I understand of the ember framework there are 5 ...
0
votes
1answer
156 views

How to Avoid Empty Record When Requested ID Doesn't Exist? (Ember)

I've got the following model (simplified for this question): App.Manager = DS.Model.extend({ name: DS.attr('string'), teamMembers: DS.hasMany('App.Employee') }); When this model is loaded (say ...
0
votes
0answers
525 views

Ember.js createRecord possibly not firing

I have an application that saves a user's search criteria in localStorage, where each saved search is represented as an instance of an Ember.js model: Checklist.SavedSearch = DS.Model.extend({ id: ...