How do you add an HTTP Header paramet to form.save();

I need to add an HTTP header to the form.save() and form.send() methods. Is there a method to support this? My Server side needs an auth token to be sent with the HTTP Request.

Thanks,
Duffy

Hi

if you’re using DataProcessor you can try to set header via dp.setTransactionMode()
docs.dhtmlx.com/api__dataprocess … nmode.html

also you can try to myForm.getFormData() manualy and then send it via dhx4.ajax.query()
docs.dhtmlx.com/api__dhtmlxajax_query.html

Andrei - Thanks for the response, that is exactly what I was looking for.