we are looking for the possibilities to see and use the Kendo UI..
how and where to create the Custom event templates for a scheduler? where should i define and create the customAllDayTemplate as mentioned below? Any e.g?
created a Div with the Id on the page but the Div is also showing up?
Html.Kendo().Scheduler<Kendo.Mvc.Examples.Models.Scheduler.Screening>()
.Name("scheduler")
.Date(new DateTime(2013, 6, 13))
.StartTime(new DateTime(2013, 6, 13, 10, 00, 00))
.EndTime(new DateTime(2013, 6, 13, 23, 00, 00))
.Height(600)
.AllDayEventTemplateId("customAllDayTemplate")
.Views(views =>
{
views.DayView();
views.AgendaView();
})
.BindTo(Model)
)