I'm trying to use jqgrid with an existing REST framework for querying and filtering data.
Is there a way in jqgrid to customize the ajax request data/parameters? It looks like you can set the url
and mtype (ie. GET, POST)
, but I'm not sure how to set the parameter data. The REST API I'm using has it's own filtering and sorting syntax. I would need to convert the param data from jqgrid into a format that is usable by the REST API.
For reference, I'm thinking of something similar to this https://datatables.net/reference/option/ajax (the function form of the option), where you are able to make the ajax request yourself and pass the results to a callback.