How can I customize a kendo scheduler popup window

user379468 picture user379468 · Dec 2, 2013 · Viewed 15k times · Source

I'm wondering if there is a way to customize the window that pops up when you click on the kendo scheduler. I would like to remove the "all day event" checkbox.

Answer

Pete H picture Pete H · Dec 17, 2013

Also consider using CSS:

div[data-container-for='isAllDay'] {
    display: none;
}

label[for='isAllDay'] {
    display: none;
}