I have what I consider the basics of kendo scheduler installed and it doesn't display correctly. I tried pasting the code from the kendo scheduler basic demo and experienced the same issues. Attached is a screenshot of what I see in Chrome. Below is a minimal page.
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
>
<
title
></
title
>
<
link
href
=
"Content/kendo/kendo.common.min.css"
rel
=
"stylesheet"
/>
<
link
href
=
"Content/kendo/kendo.default.min.css"
rel
=
"stylesheet"
/>
<
script
src
=
"Scripts/jquery.min.js"
></
script
>
<
script
src
=
"Scripts/kendo.all.min.js"
></
script
>
</
head
>
<
body
>
<
div
class
=
"k-content"
>
<
div
id
=
"mydiv"
></
div
>
</
div
>
<
script
>
$(function () {
$("#mydiv").kendoScheduler({
height: 600
});
});
</
script
>
</
body
>
</
html
>