Hi
I just downloaded scheduler.net and copied the codes as in sample. But scheduler is not displaying or rendering on page at all. Could you please help? Here is my codes in controller.
public ActionResult RepAvailableCalendar()
{
var sched = new DHXScheduler(this);
sched.Codebase = Url.Content("~/Scripts/dhtmlxScheduler");
//scheduler.SaveAction = Url.Action(“Save”, “ControllerName”);
//scheduler.DataAction = Url.Action(“Data”, “ControllerName”);
sched.InitialDate = new DateTime(2011, 9, 19);
sched.Extensions.Add(SchedulerExtensions.Extension.PDF);
//load data initially
sched.LoadData = true;
//save client-side changes
sched.EnableDataprocessor = true;
return View(sched);
}
public ActionResult RepAvailableCalendarRazor()
{
return RepAvailableCalendar();
}
in razor page,
@Html.Raw(Model.Render())