String#resolveHelper()

resolveHelper (name) Helperprivate Defined in packages/ember-htmlbars/lib/system/lookup-helper.js:16 Used to lookup/resolve handlebars helpers. The lookup order is: Look for a registered helper If a dash exists in the name: Look for a helper registed in the container. Use Ember.ComponentLookup to find an Ember.Component that resolves to the given name. Parameters: name String The name of the helper to lookup. Returns: Helper

Array#addArrayObserver()

addArrayObserver (target, opts) Ember.Arraypublic Defined in packages/ember-runtime/lib/mixins/array.js:460 Adds an array observer to the receiving array. The array observer object normally must implement two methods: arrayWillChange(observedObj, start, removeCount, addCount) - This method will be called just before the array is modified. arrayDidChange(observedObj, start, removeCount, addCount) - This method will be called just after the array is modified. Both callbacks will be passed t

Router#startRouting()

startRoutingprivate Defined in packages/ember-routing/lib/system/router.js:181 Initializes the current router instance and sets up the change handling event listeners used by the instances location implementation. A property named initialURL will be used to determine the initial URL. If no value is found / will be used.

DS.Store#findRecord()

findRecord (modelName, id, options) Promise Defined in addon/-private/system/store.js:461 Available since 1.13.0 This method returns a record for a given type and id combination. The findRecord method will always resolve its promise with the same object for a given type and id. The findRecord method will always return a promise that will be resolved with the record. Example app/routes/post.js import Ember from 'ember'; export default Ember.Route.extend({ model: function(params) { ret

DS.RootState

DS.RootState Class Defined in: addon/-private/system/model/states.js:12 Module: ember-data State Each record has a currentState property that explicitly tracks what state a record is in at any given time. For instance, if a record is newly created and has not yet been sent to the adapter to be saved, it would be in the root.loaded.created.uncommitted state. If a record has had local modifications made to it that are in the process of being saved, the record would be in the root.loaded.upda

DS.Snapshot#type

type{DS.Model} Defined in addon/-private/system/snapshot.js:78 The type of the underlying record for this snapshot, as a DS.Model.

DS.JSONSerializer#_normalizeResponse()

_normalizeResponse (store, primaryModelClass, payload, id, requestType, isSingle) Objectprivate Defined in addon/serializers/json.js:444 Parameters: store DS.Store primaryModelClass DS.Model payload Object id String|Number requestType String isSingle Boolean Returns: Object JSON-API Document

ArrayProxy#arrangedContent

arrangedContentprivate Defined in packages/ember-runtime/lib/system/array_proxy.js:88 The array that the proxy pretends to be. In the default ArrayProxy implementation, this and content are the same. Subclasses of ArrayProxy can override this property to provide things like sorting and filtering.

ArrayProxy

Ember.ArrayProxy Class PUBLIC Extends: Ember.Object Uses: Ember.MutableArray Defined in: packages/ember-runtime/lib/system/array_proxy.js:37 Module: ember-runtime An ArrayProxy wraps any other object that implements Ember.Array and/or Ember.MutableArray, forwarding all requests. This makes it very useful for a number of binding use cases or other cases where being able to swap out the underlying array is useful. A simple example of usage: let pets = ['dog', 'cat', 'fish']; let ap = Ember.A

DS.ManyArray#save()

saveDS.PromiseArray Defined in addon/-private/system/many-array.js:244 Saves all of the records in the ManyArray. Example store.findRecord('inbox', 1).then(function(inbox) { inbox.get('messages').then(function(messages) { messages.forEach(function(message) { message.set('isRead', true); }); messages.save() }); }); Returns: DS.PromiseArray promise