| Extends: | DS.RecordArray |
|---|---|
| Defined in: | addon/-private/system/record-arrays/adapter-populated-record-array.js:11 |
| Module: | ember-data |
Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:40
The flag to signal a RecordArray is finished loading data.
Example
var people = store.peekAll('person');
people.get('isLoaded'); // true Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:54
The flag to signal a RecordArray is currently loading data.
Example
var people = store.peekAll('person');
people.get('isUpdating'); // false
people.update();
people.get('isUpdating'); // true Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:86
The modelClass represented by this record array.
© 2017 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
https://emberjs.com/api/ember-data/2.14/classes/DS.AdapterPopulatedRecordArray/properties