or
messages.eventmessages: { cancel: "Annuleer", save: "Opslaan", today: "Vandaag", event: "Boeking", },editable: { template: $("#editor").html(), confirmation: "Wilt u deze boeking daadwerkelijk verwijderen?", resize:false, },$("span.k-window-title").html("Boeking");$("div.k-edit-buttons").css("display","none");@model DateTime?
@(Html.Kendo().DateTimePickerFor(m => m)
.Min(new DateTime(2010, 1, 1, 10, 0, 0)) //Set min time of the datetimepicker
.Max(new DateTime(2010, 1, 1, 20, 0, 0)) //Set min date of the datetimepicker
.Value(DateTime.Now) //Set the value of the datetimepicker
)
To use without the grid, i just included:
<div id='to-do'>
@(Html.Kendo().DateTimePicker()
.Name("datetimepicker")
.Value(DateTime.Now)
)
</div>
My datetimepicker shows up with the month on top, nothing as far as the days, and then a bunch of gray space to the right. I'm at a loss as to what to try or what to furnish you.