Hi
I am loading the events from json like below,
"Events": [{ "name":"Item1", "start":"2017-10-02T00:00:00", "end":"2017-10-06T00:00:00", "id": "3" }]
and in daypilot
$.each(dp.data.Events, function (index, element) {
var section = me.dp.rows.find(element.sectionid);
var e = new DayPilot.Event({
start: getDate(element.start),
end: getDate(element.end),
id: element.id,
});
while debugging the dates are correct as 2nd and 6th
But after rendering the dates are showing 2nd and 5th.attached a clip
Thank you
Best Regards
prabhat