Any filter that implements a date range search?

439 Views Asked by At

Is there a way to have a date range search in the interface, that would generate a request to the REST server asking for elements that are between two dates?

1

There are 1 best solutions below

1
On

It really depends on the supported filters on the API side. For instance, ng-admin-demo allows to filter visitors who visited the site since a particular date (http://marmelab.com/ng-admin-demo/#/customers/list?search=%7B%22last_seen_gte%22:%222015-12-13T23:00:00.000Z%22,%22has_ordered%22:%22true%22%7D). How does it do that? Simply by naming the filter field last_seen_gte. This _gte suffix is transformed by the API (or, in the case of ng-admin-demo, by FakeRest) into a <= condition.

So it's not a matter of ng-admin supporting it or not, it's a matter of your API supporting it or not.