Hello,
I have downloaded Daypilot lite source from the website. In this I have added DayPilot.Web.Mvc Project to my source. After addind this error was coming:-
"Incompatible DayPilot client script version. Expected 176-lite (you are using 1478)."
I have commented this code and tried to run, then in the OnInit method error was coming:-
protected override void OnInit(DayPilot.Web.Mvc.Events.Calendar.InitArgs e)
{
UpdateWithMessage("Welcome!", CallBackUpdateType.Full);
}
so I have commented this code and written new one:-
protected override void OnInit(InitArgs initArgs)
{
Update(CallBackUpdateType.Full);
}
After that Day View and Week View is not appearing properly.
Can you please tell me if i am missing any step and how can i solve my problem.