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
Hi, I'm experimenting with the possibility of filtering, sorting and paging server-side the data of a grid for a webassembly project and, even after some attempts, I managed to implement a completely dynamic solution for the API service.
The question I would like to ask is related to the way in which the grid requests the database update, that is, the fact that for each character typed an update request is made. This, in a client-server reality, is not very elegant since the very first characters typed are often irrelevant for the search, and when the database is voluminous it could involve a certain amount of almost useless work to be done by the server.
Having said that, I was wondering if it was possible to introduce a parameter at the "GridColumn" level to define after how many characters typed (usually 2 or 3 for string fields) to start requesting the update.
The text was updated successfully, but these errors were encountered:
Hi, I'm experimenting with the possibility of filtering, sorting and paging server-side the data of a grid for a webassembly project and, even after some attempts, I managed to implement a completely dynamic solution for the API service.
The question I would like to ask is related to the way in which the grid requests the database update, that is, the fact that for each character typed an update request is made. This, in a client-server reality, is not very elegant since the very first characters typed are often irrelevant for the search, and when the database is voluminous it could involve a certain amount of almost useless work to be done by the server.
Having said that, I was wondering if it was possible to introduce a parameter at the "GridColumn" level to define after how many characters typed (usually 2 or 3 for string fields) to start requesting the update.
The text was updated successfully, but these errors were encountered: