DataAdapter#attributeLimit

attributeLimitprivate Defined in packages/ember-extension-support/lib/data_adapter.js:79 Available since 1.3.0 The number of attributes to send as columns. (Enough to make the record identifiable). Default: 3

Route#_activeQPChanged

_activeQPChangedprivate Defined in packages/ember-routing/lib/system/route.js:326

Customizing Serializers

Customizing Serializers In Ember Data, serializers format the data sent to and received from the backend store. By default, Ember Data serializes data using the JSON API format. If your backend uses a different format, Ember Data allows you to customize the serializer or use a different serializer entirely. Ember Data ships with 3 Serializers. The JSONAPISerializer is the default serializer and works with JSON API backends. The JSONSerializer is a simple serializer for working with single jso

Enumerable#every()

every (callback, target) Booleanpublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:556 Returns true if the passed function returns true for every item in the enumeration. This corresponds with the every() method in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): function(item, index, enumerable); item is the current item in the iteration. index is the current index in the iteration. enumerable is the enume

Test.Adapter

Ember.Test.Adapter Class PUBLIC Defined in: packages/ember-testing/lib/adapters/adapter.js:10 Module: ember-testing The primary purpose of this class is to create hooks that can be implemented by an adapter for various test frameworks.

VisibilitySupport#_isVisibleDidChange()

_isVisibleDidChangeprivate Defined in packages/ember-views/lib/mixins/visibility_support.js:33 When the view's isVisible property changes, toggle the visibility element of the actual DOM element.

DS.RecordArray#type

typeDS.Model Defined in addon/-private/system/record-arrays/record-array.js:26 The model type contained by this record array.

Ember

Ember Namespace PUBLIC Defined in: packages/ember-metal/lib/core.js:8 Module: ember-metal This namespace contains all Ember methods and functions. Future versions of Ember may overwrite this namespace and therefore, you should avoid adding any new properties. At the heart of Ember is Ember-Runtime, a set of core functions that provide cross-platform compatibility and object property observing. Ember-Runtime is small and performance-focused so you can use it alongside other cross-platform l

DS.JSONSerializer

DS.JSONSerializer Class Extends: DS.Serializer Defined in: addon/serializers/json.js:19 Module: ember-data Ember Data 2.0 Serializer: In Ember Data a Serializer is used to serialize and deserialize records when they are transferred in and out of an external source. This process involves normalizing property names, transforming attribute values and serializing relationships. By default, Ember Data uses and recommends the JSONAPISerializer. JSONSerializer is useful for simpler or legacy back

Application#visit()

visit (url, options) Promisepublic Defined in packages/ember-application/lib/system/application.js:777 Boot a new instance of Ember.ApplicationInstance for the current application and navigate it to the given url. Returns a Promise that resolves with the instance when the initial routing and rendering is complete, or rejects with any error that occured during the boot process. When autoboot is disabled, calling visit would first cause the application to boot, which runs the application init