Top "Ember.js" questions

Ember.

How to use third party npm packages with ember cli app

EDIT: this is actually about any npm package which is not designed to play along with ember. In my case, …

ember.js npm ember-cli
Ember pagination full example

I was wondering if there is a complete example that could demonstrate how can we use pagination with ember.js …

ember.js
How to access a parent model within a nested index route using ember.js?

I have the following route structure App.Router.map(function(match) { this.route("days", { path: "/" }); this.resource("day", { path: "/:day_…

ember.js
ember-cli where to put images

In the ember-cli folder structure where should I put images? /app /bower_components /config /dist /node_modules /public /tests /vendor …

javascript ember.js ember-cli
Ember.js & Ember Data: How to create record with hasMany relationship when the parent and child don't exist yet

As seems to be the case with most everything I do with ember-data the simple test case is very simple …

ember.js ember-data
How to reload an ember data record?

I'm using the new router and ember data rev 11. I have a need to force ember-data to re-load data for …

ember.js ember-data
What's the proper way to access parameters from within Ember.Route. setupController?

Ember.Route.model has access to the params variable, but Ember.Route.setupController does not. This is troublesome for me, …

ember.js ember-data ember-router
Using Ember.js, how do I run some JS after a view is rendered?

How do I run a function after an Ember View is inserted into the DOM? Here's my use-case: I'd like …

ember.js
Right way to do navigation with Ember

What's the "right way" (or at least the options, if there is no single "Ember way" of doing this) for …

ember.js ember-old-router ember-router
How to programmatically transition between routes using Ember.js' new Router

Question: How do you do programmatically transition to a new route using the new Ember.js Router? Background / Context With …

ember.js ember-router