Ember Inspector
  • References/JavaScript/Ember.js/Guides/Ember Inspector

Introduction The Ember Inspector is a browser add-on designed to help you understand and debug your Ember applications. You can install it

2025-01-10 15:47:30
Classes and Instances
  • References/JavaScript/Ember.js/Guides/The Object Model

Classes and Instances As you learn about Ember, you'll see code like Ember.Component.extend() and DS.Model.extend()

2025-01-10 15:47:30
Controllers
  • References/JavaScript/Ember.js/Guides/Controllers

Introduction Controllers Controllers behave like a specialized type of Component

2025-01-10 15:47:30
Setting Up Tests
  • References/JavaScript/Ember.js/Guides/Tutorial

Setting Up Tests To demonstrate the basic setup and processing of an Ember application, this section will walk through building an Ember application

2025-01-10 15:47:30
Finding Records
  • References/JavaScript/Ember.js/Guides/Models

Finding Records The Ember Data store provides an interface for retrieving records of a single type.

2025-01-10 15:47:30
Customizing a Component's Element
  • References/JavaScript/Ember.js/Guides/Components

Customizing a Component's Element By default, each component is backed by a <div> element. If you were to look at a rendered

2025-01-10 15:47:30
Disabling Prototype Extensions
  • References/JavaScript/Ember.js/Guides/Configuring Ember.js

Disabling Prototype Extensions By default, Ember.js will extend the prototypes of native JavaScript objects in the following ways:

2025-01-10 15:47:30
Passing Properties to a Component
  • References/JavaScript/Ember.js/Guides/Components

Passing Properties to a Component Components are isolated from their surroundings, so any data that the component needs has to be passed in

2025-01-10 15:47:30
Enumerables
  • References/JavaScript/Ember.js/Guides/The Object Model

Enumerables In Ember.js, an enumerable is any object that contains a number of child objects, and which allows you to work with those children

2025-01-10 15:47:30
Redirecting
  • References/JavaScript/Ember.js/Guides/Routing

Redirecting Sometimes you want to redirect a user to a different page than what they requested for. For example

2025-01-10 15:47:30