Please advise on how to load the non-minimized versions of the javascript files so I can debug my application. Thanks
Georgi
Telerik team
commented on 09 Feb 2023, 09:34 AM
We ship our scripts as both ES6 and UMD modules. I suspect you are using the ES6 modules version. When you load an ES6 module, you have to set the type attribute of the script tag to "module".
We ship our scripts as both ES6 and UMD modules. I suspect you are using the ES6 modules version. When you load an ES6 module, you have to set the type attribute of the script tag to "module".
e.g.
<script type="module" src="scripts/kendo.filter.js"></script>
I hope this helps.