How can I customize a kendo scheduler popup window

kendo-scheduler, kendo-ui

Solution

Also consider using CSS:

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

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

Problem

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.

Original source