Hi Daypilot,
I'm using very old version of DayPilot having version "1418".
Now I have a problem with Daypilot Calendar.
In my Calendar, I have around 30 days, when I scroll to see another dates, the timeheader doesn't scroll with the viewport.
I'm not sure what's wrong with my script.
Here is my Inititalize script:
var dpCalendar = new DayPilot.Calendar("dpC");
dpCalendar.theme = 'th_calgreen';
dpCalendar.durationBarVisible = false;
dpCalendar.cellDuration = 10;
dpCalendar.heightSpec = "Fixed";
dpCalendar.height = 645;
dpCalendar.columnWidthSpec = "Fixed";
dpCalendar.columnWidth = 100;
dpCalendar.width = "100%";
dpCalendar.eventMoveHandling = "Disabled";
dpCalendar.eventResizeHandling = "Disabled";
dpCalendar.timeRangeSelectedHandling = "Disabled";
dpCalendar.bubble = new DayPilot.Bubble({
cssClassPrefix: "bubble_default",
animated: false,
onLoad: function (args) {
var ev = args.source;
args.html = "<span style='font-weight:bold; font-size:14px; color:blue; '>Package Information:</span><br/>" + ev.data.html;
args.text = ev.data.text;
}
});
//Events
dpCalendar.onEventDoubleClick = function (args) {
//do something
};
dpCalendar.init();
dpCalendar.hide();