Hi,
I've only recently started using Kendo and I encountered a rather peculiar bug that a teammate of mine has not encountered using the same context.
Attached to this thread is a picture of this bug and below is the code snippet I used to display the calendar.
Your support is greatly appreciated.
I've only recently started using Kendo and I encountered a rather peculiar bug that a teammate of mine has not encountered using the same context.
Attached to this thread is a picture of this bug and below is the code snippet I used to display the calendar.
<div id="calendarDiv"> @(Html.Kendo().Window() .Name("calendarWindow") .Title("") .Content(@<div> @(Html.Kendo().Calendar().Name("calendar"))<br /><br /> <strong>Choose calendar:</strong><br /><br /> <strong>Physician:</strong><br /><br /> @(Html.Kendo().ComboBox().Name("doctors").HtmlAttributes(new { style = "width:200px" }))<br /><br /> or<br /><br /><strong>Department:</strong><br /><br /> @(Html.Kendo().ComboBox().Name("departments").HtmlAttributes(new { style = "width:200px" })) </div>) .Actions(actions => actions .Minimize() .Custom("custom") ) .Draggable() .Resizable() ) </div>Your support is greatly appreciated.