I have removed kendo.all.min.js and included all the scripts in the list for the widget I use, but now I get two errors:
1. Without .all.min.js culture does not work anymore:
I have this script in the page:
<
script
src
=
"assets/lib/kendojs/js/cultures/kendo.culture.it-IT.min.js"
></
script
>
<
script
type
=
"text/javascript"
>
kendo.culture("it-IT")
</
script
>
This does not work without kendo.all.min.js
2. The second problem I have is with timepicker:
I added these scripts
jquery.js
kendo.core.js
kendo.popup.js
kendo.timepicker.js
as descriped here
It works in firefox and chrome for linux but in android there are displaying problems:
The values are displayed in the popup but also below the popup: the 48 values remain displayed.
Also here if I add kendo.all.min.js the problem is solved, but I want to do things without kendo all for evident optimization needs.
Paolo