I install kendo ui asp.net mvc 2018.1.117 and 2016.
1. I add Style and JS Folder to my project and renamed both of them to "kendo" .
2. add reference to my project
3. I didn't config BundleConfig.cs because there was no BundleConfig.cs in my project
4. I add namespace to web.config
5. I add Styles and ... manually in my project like :
<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"
/>
<link href=
"@Url.Content("
~/Content/kendo/kendo.common-material.min.css
")"
rel=
"stylesheet"
type=
"text/css"
/>
<link href=
"@Url.Content("
~/Content/kendo/kendo.mobile.all.min.css
")"
rel=
"stylesheet"
type=
"text/css"
/>
<link href=
"@Url.Content("
~/Content/kendo/kendo.material.min.css
")"
rel=
"stylesheet"
type=
"text/css"
/>
<script src=
"@Url.Content("
~/Scripts/kendo/jquery.min.js
")"
></script>
<script src=
"@Url.Content("
~/Scripts/kendo/angular.min.js
")"
></script>
<script src=
"@Url.Content("
~/Scripts/kendo/jszip.min.js
")"
></script>
<script src=
"@Url.Content("
~/Scripts/kendo/kendo.all.min.js
")"
></script>
I did all these steps and when I add kendo date Picker it doesn't work:
@(Html.Kendo().DatePicker().Name(
"datepicker"
))
When I click inspect element it shows my css and js file but kendo ui doesn't work.
I attach the Picture that show kendo ui doesn't work