Top "Ember.js" questions

Ember.

EmberJS: How to transition to a router from a controller's action

I have an action: {{action create target="controller"}} which I have targeted to the bound controller (rather than the router) …

javascript ember.js ember-old-router
What is the difference between a route and resource in New Router API?

I am trying to understand the difference between a Route and a Resource. The way I understand Resource helps to …

ember.js ember-router
Using .findBy() with Ember-data-populated array controller

Background I'm writing some functional tests to test that my router is navigating and loading my models correctly. So far, …

ember.js ember-data qunit
Inspect Ember.js: Get the type of an object (Class)?

I use console.log() a lot, especially in combination with Ember.inspect(). But there's one thing I miss: How can …

ember.js
Ember authentication best practices?

Does anyone have experience creating an authentication mechanism with the new router in pre4? Here are some of my thoughts …

ember.js
infinite scroll with ember.js (lazy loading)

I have a view where there can be a large number of items for the user to scroll through and …

ember.js lazy-loading infinite-scroll ember-data
How to add objects to a hasMany relationship with ember data

I have these two models: App.Items = DS.Model.extend({ provider: DS.attr('string'), name: DS.attr('string'), description: DS.…

ember.js ember-data
Handlebars partial vs. render vs. template

The Fire Up Ember.js screencast uses partial, template, render to render templates within templates, but I'm still not sure …

ember.js handlebars.js mustache
Uncaught Error: Assertion Failed: calling set on destroyed object

working in ember-cli testing. After all tests passed it returns extra two test with errors. Uncaught Error: Assertion Failed: calling …

ember.js qunit ember-cli
Show property which includes html tags

I've an ember property which includes html tags (<br />, <strong>, <p>, <span>, …

ember.js handlebars.js