Hi there, my name is Oscar and i’m trying to do some scheduler implementation just to know more about this great scheduler. Sorry for my english. I have a .Net app in web and when i load the scheduler everything go fine, i can see all the dates but if i try to save a new one date the connector save it but change the month for the day, I mean if i want a date on December 8 the server save it on August 12. Can you help me please??? Im Using .ashx page with the connector for .Net
//Here the client code
function init() {
scheduler.config.xml_date = "%Y-%m-%d %H:%i"; //"%d/%m/%Y %H:%i
scheduler.config.prevent_cache = true;
scheduler.config.multi_day = true;
scheduler.config.show_loading = true;
scheduler.init('scheduler_here', null, "month");
scheduler.load("Esquema.ashx");
var dp = new dataProcessor("Esquema.ashx");
dp.init(scheduler);
}
thanks in advance