Ok so!
I am following a tutorial and the tutorial show how you can take an existing visual studio program and add Telerik to it.
Under the telerik menu option in visual studio I select Telerik UI for asp.net mvc then I select upgrade wizard.
Well silly me thought that the wizard after all its wizarding would add what I needed to my visual studio mvc project.
well well... I guess not. Gullible me thought something that we paid alot of money for would do what it claimed it would do.
NOPE!
Can some one tell when what is going wrong here...
I am adding a date time picker to a page. It does not work.
I did notice that the location that the wizard added was not in my actual file directory
where it is looking... so do I have to manually copy those files there??
Here is the source code:
The Razor index.cshtml page
@{
ViewBag.Title = "My Kiosk";
}
@(Html.Kendo().DatePicker().Name("Date").Value(DateTime.Today))
The Layout page for the mvc application there the link to the kendo stuff is:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=11,chrome=1">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - XXXXX</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
<link href="@Url.Content("~/Content/bootstrap.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/kendo/2020.2.617/jszip.min.js")"></script>
<script src="@Url.Content("~/Scripts/bootstrap.min.js")"></script>
</head>
<body>
Here are the errors I get on the the web browser
GET http://localhost:50296/Scripts/kendo/2020.2.617/jszip.min.js net::ERR_ABORTED 404 (Not Found)
bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQuery at bootstrap.min.js:6
(anonymous) @ bootstrap.min.js:6
(index): 71
Uncaught ReferenceError: kendo is not defined at (index):71 (anonymous) @ (index):71