Hi,
I’m using dhtmlxScheduler v2 + Java, from IE (v6.0.2900.5512) it works fine, but from firefox (v3.5.2) it display an alert with the data returned from the servlet.
Thank you.
Such problem can occurs because of incorrect xml output.
Are you using connector for java, or custom server side code?
In second case, please be sure that there is no any extra output before <?xml declaration ( any whitespace or newline , which was outputted before it, will break xml parsing in FF )
Hi,
you are right, it was an incorrect content type:
before: response.setContentType(“text/html;charset=UTF-8”);
now: response.setContentType(“text/xml;charset=UTF-8”);
Thank you again.