Dynamic loading POST requests

Hi !

Is it possible to set the ajax calls of the scheduler to load data by POST request ?

Thanks in advance

You can use something like next

dhtmlxAjax.post("data.php", function(loader){ scheduler.parse(loader.xmlDoc.responseText); })

THanks, I ended up in a different way because I had to change too many things to implement your solution.

The reason why I wanted to post it is IE9 and superior were caching the AJAX requests, so the scheduler was not updated correctly.

I found another solution as I put this :

scheduler.config.prevent_cache=true;

to make it work.