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:40
The flag to signal a RecordArray
is finished loading data.
Example
1 2 |
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:54
The flag to signal a RecordArray
is currently loading data.
Example
1 2 3 4 |
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:86
The modelClass represented by this record array.