W3cubDocs

/Ember.js

DS.FilteredRecordArray

Extends: DS.RecordArray
Defined in: addon/-private/system/record-arrays/filtered-record-array.js:10
Module: ember-data

isLoaded

The flag to signal a RecordArray is finished loading data.

Example

var people = store.peekAll('person');
people.get('isLoaded'); // true

isUpdating

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

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.FilteredRecordArray/properties