My Kendo menu isn't playing nice. I get this runtime error:
Object doesn't support property or method 'kendoMenu'
I've found references to taking out references to jquery in script inclusion, but trying that doesn't help.
Here is my script refs in my _layout.cshtml:
@*@Scripts.Render("~/bundles/modernizr")*@<
br
> @*<
script
src
=
"~/Scripts/jquery-1.10.2.js"
></
script
>*@<
br
> <
script
src
=
"~/Scripts/kendo.all.min.js"
></
script
><
br
> <
script
src
=
"~/Scripts/kendo.menu.min.js"
></
script
><
br
> <
script
src
=
"~/Scripts/kendo.aspnetmvc.min.js"
></
script
>
Here is my implemtation:
@(Html.Kendo().Menu()
.Name("Menu")
.Items(items =>
{
items.Add().Action("Index", "Applications");
}));
Advide?