0

I am trying out kendoui core datepicker but the provided examples don't work.

Kendoui's datepicker example gives file paths that don't exist

<link rel="stylesheet" href="styles/kendo.common.min.css" />
<link rel="stylesheet" href="styles/kendo.default.min.css" />
<link rel="stylesheet" href="styles/kendo.dataviz.min.css" />
<link rel="stylesheet" href="styles/kendo.dataviz.default.min.css" />

<script src="js/jquery.min.js"></script>
<script src="js/kendo.all.min.js"></script>

I have changed some of these to the correct paths but some files don't exist or are renamed in the download. This is what I have:

<link rel="stylesheet" href="styles/kendo.common.core.min.css" />
<link rel="stylesheet" href="styles/kendo.default.min.css" />

<script src="js/jquery.min.js"></script>
<script src="js/kendo.core.min.js"></script>
<script src="js/kendo.datetimepicker.min.js"></script>

What files are actually required get this working?

Ganesh Salunkhe
  • 596
  • 1
  • 4
  • 18
bikeman
  • 41
  • 1
  • 3

1 Answers1

0

Below JS is required for Kendo-DatePicker.

  • jquery.js
  • kendo.core.js
  • kendo.calendar.js
  • kendo.popup.js
  • kendo.datepicker.js

For more information please check kendo-UI documentation link.

Jayesh Goyani
  • 11,008
  • 11
  • 30
  • 50