Hi Stanislav,
Thanks for the answer !
I have an other problem, still with recurring events.
I add these two events :
[code] var event = {
start_date : new Date(2011, 07, 25, 15, 00, 00),
end_date : new Date(9999,01,01),
id : 1,
event_length : 9000,
rec_pattern : “day_1___”,
rec_type : “day_1___”,
};
var subEvent = {
start_date : new Date(2011,07,26, 10,00,00),
end_date : new Date(2011,07,26, 13,00,00),
event_pid : 1,
id : 2,
rec_pattern : "",
rec_type : ""
};
scheduler.addEvent(event);
scheduler.addEvent(subEvent); [/code]
What I want, is having a event with a daily repetition from 15 to 17.30 with an exception for the 2011-08-26.
When adding these events, 2 events appeared for 2011-08-26, one at 15 and the other one at 10
I guess that something is missing in one of my events, but I don’t know what …
Could you help me ? 