I'm currently facing an issue with my web application development. I am utilizing Laravel 5.8 for the backend and JQGrid version 4.6.0 to create grids.
One of the grids I have is constructed with a dynamic URL that fetches JSON data from the server based on filter parameters provided. As a result, the grid has the loadonce
attribute set to false
.
The problem I am encountering is that the pagination and column filtering are not functioning properly at the moment. It seems like I might need to create a server-side solution for each pagination and filtering feature. However, I am uncertain because I haven't come across a concrete example on how to tackle this.
Upon observing the "Network Tab" in Google Developer Tools, I noticed that a particular URL is being called when trying to sort by column, such as:
http://localhost/projetMecenat/public/listes/cerfa/json/null?_search=false&nd=1621430296935&rows=5&page=1&sidx=NUM_CERFA&sord=asc
, but I am unsure how to utilize this information.
If anyone has experience dealing with a similar scenario, I would greatly appreciate your assistance.
Thank you in advance :)