Class DS.FilteredRecordArray
Extends:
DS.RecordArray
Module:
ember-data
Represents a list of records whose membership is determined by the store. As records are created, loaded, or modified, the store evaluates them to determine if they should be part of the record array.
isLoaded
Module:
ember-data
Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:42
The flag to signal a RecordArray
is finished loading data.
Example
var people = store.peekAll('person');
people.get('isLoaded'); // true
isUpdating
Module:
ember-data
Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:56
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
type
Module:
ember-data
Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:88
The modelClass represented by this record array.