dede
#1
hello
when i use in configuration i use dhtmlxConnector.NET)
scheduler.config.xml_date = “”%d-%m-%Y %H:%i""
i can write to sql server but i don’t read…
so when i use :
scheduler.config.xml_date = “”-%Y-%m-%d %H:%i""
i can read from sql server but i can’t write …
please help me thanks
Hi,
you need to change xml output format in connector configuration
try
scheduler.config.xml_date = "%d-%m-%Y %H:%i";
on the client, and
var connector = new dhtmlxSchedulerConnector(
...
);
Tools.DateFormat = "dd-MM-yyyy HH:mm:ss";
return connector;
on the server