DS.JSONAPISerializer#extractRelationships()

extractRelationships (modelClass, resourceHash) Object Inherited from DS.JSONSerializer but overwritten in addon/serializers/json-api.js:299 Parameters: modelClass Object resourceHash Object Returns: Object

VisibilitySupport#isVisible

isVisibleBooleanpublic Defined in packages/ember-views/lib/mixins/visibility_support.js:20 If false, the view will appear hidden in DOM. Default: null

Rendering Performance

Rendering Performance You can use the Inspector to measure your app's render times. Click on Render Performance to start inspecting render times. Accuracy Using the Inspector adds a delay to your rendering, so the durations you see are not an accurate representation of the speed of your production apps. Use these times to compare durations and debug rendering bottlenecks, but not as a way to accurately measure rendering times. Toolbar Click on the "clear" icon to remove existing render logs.

DataAdapter

Ember.DataAdapter Class PUBLIC Extends: EmberObject Defined in: packages/ember-extension-support/lib/data_adapter.js:20 Module: ember-extension-support The DataAdapter helps a data persistence library interface with tools that debug Ember such as the Ember Extension for Chrome and Firefox. This class will be extended by a persistence library which will override some of the methods with library-specific code. The methods likely to be overridden are: getFilters detect columnsForType getRecor

Binding Element Attributes

Binding Element Attributes In addition to normal text, you may also want to have your templates contain HTML elements whose attributes are bound to the controller. For example, imagine your controller has a property that contains a URL to an image: <div id="logo"> <img src={{logoUrl}} alt="Logo"> </div> This generates the following HTML: <div id="logo"> <img src="http://www.example.com/images/logo.png" alt="Logo"> </div> If you use data binding with a

ember-runtime

ember-runtime Module Parent: ember Defines string helper methods including string formatting and localization. Unless EmberENV.EXTEND_PROTOTYPES.String is false these methods will also be added to the String.prototype as well.

DS.RecordArrayManager#createRecordArray()

createRecordArray (typeClass) DS.RecordArray Defined in addon/-private/system/record-array-manager.js:242 Create a DS.RecordArray for a type. Parameters: typeClass Class Returns: DS.RecordArray

DS.ServerError#errorsArrayToHash()

errorsArrayToHashprivate Defined in addon/adapters/errors.js:199

DS.JSONSerializer#normalizeFindAllResponse()

normalizeFindAllResponse (store, primaryModelClass, payload, id, requestType) Object Defined in addon/serializers/json.js:290 Available since 1.13.0 Parameters: store DS.Store primaryModelClass DS.Model payload Object id String|Number requestType String Returns: Object JSON-API Document

ViewTargetActionSupport#elementId

elementIdStringpublic Defined in packages/ember-views/lib/mixins/view_support.js:250 The HTML id of the view's element in the DOM. You can provide this value yourself but it must be unique (just as in HTML): {{my-component elementId="a-really-cool-id"}} If not manually set a default value will be provided by the framework. Once rendered an element's elementId is considered immutable and you should never change it. If you need to compute a dynamic value for the elementId, you should do th