You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While rendering collections of data a common scenario is to provide possibility to filter a collection (limit it to records matching certain criteria). It is convenient to write something along those lines:
There are many ways of expressing filtering criteria, one could think of:
a string / RegExp that is used to match items
a function, similar to the one used in Array.prototype.filter
In any case it would be convenient to have such a helper in the framework as the case for filtering is very common. It would be also go hand-in-hand with the ordering helper already built-in.
The text was updated successfully, but these errors were encountered:
While rendering collections of data a common scenario is to provide possibility to filter a collection (limit it to records matching certain criteria). It is convenient to write something along those lines:
There are many ways of expressing filtering criteria, one could think of:
Array.prototype.filter
In any case it would be convenient to have such a helper in the framework as the case for filtering is very common. It would be also go hand-in-hand with the ordering helper already built-in.
The text was updated successfully, but these errors were encountered: