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
{{ message }}
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
How can I implement a search if I have a splitting into server pages (server-side pagination)? At the moment, information search is performed on the page that is active, and the remaining pages are simply ignored by the filter. Is there any documentation or example?
The text was updated successfully, but these errors were encountered:
Currently the filter only seachs an "in memory" array, if you need server side pagination you need another considerations, like the request URL and other things that are out of scope of this project.
I currently use this project with server side pagination, but I check if the result array has less than my page and fetch more rows, this works fine for a few rows, but it's not scalable.
How can I implement a search if I have a splitting into server pages (server-side pagination)? At the moment, information search is performed on the page that is active, and the remaining pages are simply ignored by the filter. Is there any documentation or example?
The text was updated successfully, but these errors were encountered: