When certain options of the editable Window are set through configuration, they are not being serialized correctly:
MinWidth
MinHeight
Events (Open, Close, etc.)
@(Html.Kendo().Scheduler<TelerikAspNetCoreAppScheduler.Models.TaskViewModel>()
.Editable(e => e.Window(w =>
w.MinHeight(1000)
.MinWidth(1000)
.Events(we => we.Open('onOpen'))))
)