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
In future will be added features like server side filtering and pagination? Usually filters and pagination are parameters of query string that must be keep in sync with interface so when component is rendered filters are generated from the params of query string and so on the pagination.
Another cool features could be a set of predefined filters based on data type. For example for dates a filter that allow operators such as >, =, < to filter between a range of dates or a specific date. Another filter maybe for boolean fields or char fields (also the possibility to use a choices / drop down menu to select values for filter data with all the possible choices
Do you think there will be support for features like this in feature?
The text was updated successfully, but these errors were encountered:
Adding server-side filtering and pagination is on my TODO list. I hope I have time this holiday to add them.
I'm more hesitant about adding predefined filters based on the data type, mainly because we do have custom sorting functions so you can do that already. Maybe providing some util functions for common sorting would be the way to go, that way you can choose to use any of them as your custom sorting.
As for supporting dropdowns, I think this should be done in userland, we have a slot for the Header so you can replace the Header with a dropdown and use the API we already provide for filtering with it.
In future will be added features like server side filtering and pagination? Usually filters and pagination are parameters of query string that must be keep in sync with interface so when component is rendered filters are generated from the params of query string and so on the pagination.
Another cool features could be a set of predefined filters based on data type. For example for dates a filter that allow operators such as >, =, < to filter between a range of dates or a specific date. Another filter maybe for boolean fields or char fields (also the possibility to use a choices / drop down menu to select values for filter data with all the possible choices
Do you think there will be support for features like this in feature?
The text was updated successfully, but these errors were encountered: