Hello, I’m using the dhtmlxGantt V3.2.1 and dataprocessor 3.6
When I send the data to the server using “dataProcessor.sendData();”,i got an error.
Error : “window.dhtmlx.url is not a function”
Detail:
dhtmlxgantt.js–>
dp.attachEvent(“onBeforeDataSending”, function() {
var url = this._serverProcessor;
if(this._tMode == “REST”){
var mode = this._ganttMode.substr(0, this._ganttMode.length - 1);// links, tasks → /link/id, /task/id
url = url.substring(0, url.indexOf(“?”) > -1 ? url.indexOf(“?”) : url.length);
//editing=true&
this.serverProcessor = url + (url.slice(-1) == “/” ? “” : “/”) + mode;
}else{
→ “Here is the error” -->this.serverProcessor = url + window.dhtmlx.url(url) + “gantt_mode=” + this._ganttMode;
}
return true;
});
This is a reported error? have you the solution to this?
Thanks in advance.