Add params to the query string used to data loading

Hi
I would ask if is it possible to add params to the query string used to data loading?
Another question is if it is possible to do a POST data loading?
Many Thanks

Of course you can. Below is the sample I do it in my scheduler.
scheduler.load(“events.do?uid=”+scheduler.uid()+"&"+queryStr+ “&columnName=” + “resources”)

About post mode I’m not sure. If you check the source code, you’ll find that doPost() is empty.

Best wishes,

Judo

To use POST requests you will need to modify source code. You can locate all incomings of the next line

dhtmlxAjax.get(url

and replace with

dhtmlxAjax.post(url