Lines Matching refs:records
37 // 1. Instantiating new Y.Recordset() will not go into the setter of "records", and so it is necessary to create this._items in the initializer.
38 // 2. Instantiating new Y.Recordset({records: [{...}]}) will call the setter of "records" and create this._items. In this case, we don't want that to be overwritten by [].
50 * <dd>Array of new records to be added</dd>
56 * <p>Preventing this event will cause the new records NOT to be
69 * <dd>Array of records to be removed</dd>
71 * <dd>Number of records to be removed</dd>
74 * array from which to remove records</dd>
77 * <p>Preventing this event will cause the records NOT to be
86 * The Recordset is being flushed of all records.
98 * <dd>Array of records with updated values</dd>
100 * <dd>Array of current records that will be replaced</dd>
106 * <p>Preventing this event will cause the records NOT to be
156 * Returns a range of records beginning at particular index
160 * @param range {Number} (Optional) Number of records to retrieve. The default is 1
179 * @return {Number} Number of records in the recordset
186 Gets an array of values for a data _key_ in the set's records. If no _key_
191 @param {String} [key] Data property to get from all records
244 @param {Number} [range] Number of records to remove (including the one
278 Updates the recordset with the new records passed in. Overwrites existing
279 records when updating the index with the new records.
497 * Sets up the hashtable with all the records currently in the recordset
532 var records = [],
537 records[i] = this._changeToRecord(items[i]);
540 return (this._items = records);
550 * @attribute records
553 records: {