Hello,
My scheduller is working but i have 2 problems :
First with google chrome i can’t insert new data i have this error :
DataProcessor object initialized
!!!Uncaught Exception
Code: 0
Message: Incorrect incoming data, ID of incoming records not recognized
But it’s working with ie and firefow.
My second problem is when i want add a new event i can add the begining of the event but no form for the end of the event. So all my event end 5 minutes later.
scheduler.config.xml_date="%Y-%m-%d %H:%i";
scheduler.config.prevent_cache = true;
scheduler.config.lightbox.sections=[
{name:"description", height:130, map_to:"text", type:"textarea" , focus:true},
{name:"location", height:43, type:"textarea", map_to:"details" },
{name:"time", height:72, type:"time", map_to:"auto"}
]
scheduler.config.first_hour=7;
scheduler.locale.labels.section_location="Location";
//scheduler.config.details_on_create=true;
//scheduler.config.details_on_dblclick=true;
scheduler.init('scheduler_here',null,"month");
scheduler.setLoadMode("month")
scheduler.load("data/connector.php");
var dp = new dataProcessor("data/connector.php");
dp.init(scheduler);
Thank you for your help