Plugin that provides the ability to filter through a recordset. Uses the filter methods available on Y.Array (see arrayextras submodule) to filter the recordset.
filter
filter
[value]
Defined in
recordset/js/recordset-filter.js:36
Filter through the recordset with a custom filter function, or a key-value pair.
A new filtered Recordset instance
grep
pattern
Defined in
recordset/js/recordset-filter.js:81
Iterates over the Recordset, returning a new Recordset of all the elements that match the supplied regular expression
pattern
RegExp
The regular expression to test against each record.
A Recordset instance containing all the items in the collection that produce a match against the supplied regular expression. If no items match, an empty Recordset instance is returned.
reject
filter
Defined in
recordset/js/recordset-filter.js:65
The inverse of filter. Executes the supplied function on each item. Returns
a new Recordset containing the items that the supplied function returned
false
for.
filter
Function
A boolean function, executed on each item.
A new Recordset instance containing the items on which the supplied function returned false.