Datatable server side filtering, modify request format

Hey all!

Hope all is well, I’m working on making the switch from ExtJS over to WebIX and am loving it so far!

Had a quick question I am hoping someone with more experience can help me out with.

I have a datatable and server side filtering set, my API expects the format to be in a certain way and I am looking to change the default.

By default if I try to filter my column named ‘testcolumn’ for the value ‘testvalue’ the webix app sends the following:
hxxp://127.0.0.1:8888/tablename?continue=true&filter[testcolumn]=testvalue

My API is expecting the following:
hxxp://127.0.0.1:8888/tablename?testcolumn=like.testvalue

Can anyone point me in the right direction for modification of the default filtering format?

Hi,

You can create own proxy where parameters are sent as you need.

view: "datatable",
url: "myproxy->tablename"

Thank you for the response. I have a working proxy created that modifies parameters. My API also passes several parameters via headers. Such as page numbers in the ‘Range’ header. Do you have any advice on how to perform this?