Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why kendo.web.min.js and kendo.dataviz.min.js conflicts?

I own a construction grid kendo.web.min.js with kendo.dataviz.min.js, but when I use the Using both collision occurs.

But it is interesting that the project jsfiddle it works well but when I run the project visual studio I encountered the following error TypeError: s is undefined

jsfiddle code

enter image description here

<link href="css/themes.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/base.css" rel="stylesheet" />
<link href="js/kendo/src/styles/kendo.dataviz.css" rel="stylesheet" />
<link href="js/kendo/styles/kendo.silver.min.css" rel="stylesheet" />
<link href="js/kendo/styles/kendo.common.min.css" rel="stylesheet" />
<script src="js/kendo/js/kendo.web.min.js"></script>
<script src="js/kendo/js/kendo.dataviz.min.js"></script>
<script src="js/kendo/src/js/kendo.dataviz.sparkline.js"></script>
like image 747
Martin Avatar asked Oct 21 '22 03:10

Martin


1 Answers

They conflict because they include the same files - kendo.data.js, kendo.core.js etc. You should never include them in the same page - use kendo.all.min.js or create a JavaScript file with only the required features.

More info is available in the Kendo UI documentation - JavaScript dependencies.

like image 185
Atanas Korchev Avatar answered Nov 08 '22 23:11

Atanas Korchev