Class DS.FilteredRecordArray

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.

Show:

Module: ember-data

The flag to signal a RecordArray is finished loading data.

Example

1
2
var people = store.peekAll('person');
people.get('isLoaded'); // true
Module: ember-data

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
Module: ember-data

The modelClass represented by this record array.