I’m using the connector to load data into my scheduler. The XML that I get looks good:
<?xml version='1.0' encoding='utf-8' ?>
But then I get the message “Stack overflow at line: 1785” in IE. Firebug displays “too much recursion”.
The error occurs in dhtmlxscheduler_debug.js, at this location:
if (window.dataProcessor){
dataProcessor.prototype.init_original=dataProcessor.prototype.init;
dataProcessor.prototype.init=function(obj){
this.init_original(obj);
The connector is the 0.9 Java version, and the code for the scheduler data is:
SchedulerConnector c = new SchedulerConnector(conn,DBType.PostgreSQL);
c.render_table("events","event_id","start_date,end_date,event_name,details","","");
By any chance are you including the dhtmlxdataprocessor_debug.js on the same page?
scheduler_debug.js already includes all necessary code, so you must not include such files as dataprocessor.js or connector.js