I have a page with both the kendo mvc grid and chart. If i add both
<script src="@Url.Content("~/Scripts/kendo.aspnetmvc.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo.dataviz.min.js")"></script>
, chart does not work. if i remove aspnet.min.js reference, it works fine.
This is what my Layout.cshtml looks like
For my project, it is a big problem, if i cannot add them together. Please inform me if putting them together is the issue or if i am doing something wrong
<script src="@Url.Content("~/Scripts/kendo.aspnetmvc.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo.dataviz.min.js")"></script>
, chart does not work. if i remove aspnet.min.js reference, it works fine.
This is what my Layout.cshtml looks like
<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="@Url.Content("~/Content/kendo.common.min.css")">
<link href="@Url.Content("~/Content/kendo.dataviz.min.css")" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="@Url.Content("~/Content/kendo.default.min.css")">
<script src="@Url.Content("~/Scripts/jquery.min.js")"></script><br>
<script src="@Url.Content("~/Scripts/kendo.web.min.js")"></script>
@*<script src="@Url.Content("~/Scripts/kendo.aspnetmvc.min.js")"></script>*@
<script src="@Url.Content("~/Scripts/kendo.dataviz.min.js")"></script>
<script src="@Url.Content("~/Scripts/jquery-ui-1.8.11.min.js")" type="text/javascript"></script>
</head>
<body>
@RenderBody()
</body>
</html>For my project, it is a big problem, if i cannot add them together. Please inform me if putting them together is the issue or if i am doing something wrong