DS.Adapter#shouldBackgroundReloadAll()

shouldBackgroundReloadAll (store, snapshotRecordArray) Boolean Defined in addon/adapter.js:619 Available since 1.13.0 This method is used by the store to determine if the store should reload a record array after the store.findAll method resolves with a cached record array. This method is only checked by the store when the store is returning a cached record array. If this method returns true the store will re-fetch all records from the adapter. For example, if you do not want to fetch comple

DS.Adapter#findMany()

findMany (store, type, ids, snapshots) Promise Defined in addon/adapter.js:423 The store will call findMany instead of multiple findRecord requests to find multiple records at once if coalesceFindRequests is true. app/adapters/application.js import DS from 'ember-data'; export default DS.Adapter.extend({ findMany(store, type, ids, snapshots) { return new Ember.RSVP.Promise(function(resolve, reject) { Ember.$.ajax({ type: 'GET', url: `/${type.modelName}/`,

DS.VERSION

VERSIONStringstatic Defined in addon/-private/core.js:15

TextSupport#templateName

templateNameStringprivate Defined in packages/ember-views/lib/mixins/template_support.js:22 The name of the template to lookup if no template is provided. By default Ember.View will lookup a template with this name in Ember.TEMPLATES (a shared global object). Default: null

Transition#data

data{Object}public Defined in bower_components/router.js/lib/router/transition.js:122 Custom state can be stored on a Transition's data object. This can be useful for decorating a Transition within an earlier hook and shared with a later hook. Properties set on data will be copied to new transitions generated by calling retry on this transition.

DS.RESTSerializer#serializeIntoHash()

serializeIntoHash (hash, typeClass, snapshot, options) Inherited from DS.JSONSerializer but overwritten in addon/serializers/rest.js:663 You can use this method to customize the root keys serialized into the JSON. The hash property should be modified by reference (possibly using something like _.extend) By default the REST Serializer sends the modelName of a model, which is a camelized version of the name. For example, your server may expect underscored root objects. app/serializers/applic

TextSupport#cancel()

cancel (event) private Defined in packages/ember-views/lib/mixins/text_support.js:225 Allows you to specify a controller action to invoke when the escape button is pressed. To use this method, give your field an escape-press attribute. The value of that attribute should be the name of the action in your controller that you wish to invoke. For an example on how to use the escape-press attribute, please reference the example near the top of this file. Parameters: event Event

Observable#set()

set (keyName, value) Objectpublic Defined in packages/ember-runtime/lib/mixins/observable.js:168 Sets the provided key or path to the value. This method is generally very similar to calling object[key] = value or object.key = value, except that it provides support for computed properties, the setUnknownProperty() method and property observers. Computed Properties If you try to set a value on a key that has a computed property handler defined (see the get() method for an example), then set()

ViewTargetActionSupport#parentViewDidChange event

parentViewDidChangeprivate Defined in packages/ember-views/lib/mixins/view_support.js:355 Called when the parentView property has changed.

Templates.helpers.render()

render (name, context, options) Stringpublic Defined in packages/ember-htmlbars/lib/keywords/render.js:14 Calling {{render}} from within a template will insert another template that matches the provided name. The inserted template will access its properties on its own controller (rather than the controller of the parent template). If a view class with the same name exists, the view class also will be used. Note: A given controller may only be used once in your app in this manner. A singleto