Hello Dan,
I see refreshCallBack() called in the source code from the example you gaveme, but when I tried to call it in javascript it gives me an error. Here is the function I'm using:
function IntervalChange(ddl)
{
var NumCells = 60/ddl.options[ddl.selectedIndex].value;
var DPC = document.getElementById("DayPilotCalendar1")
DPC.CellsPerHour = NumCells;
DPC.refreshCallBack();
}
What I'm trying to do is change the cellsPerHour property depending on the drop down provided to the user. Also, could you please provide some sample code to handle the server side events? At this point I'm not sure how to create and catch an ajax callback to the server. I really appreciate your help on this.