I have a web page using a Kendo grid. It was working fine with the full js file. But to save space, I removed that file and added in the dependencies manually. I used the documentation here: http://www.kendoui.com/documentation/javascript-dependencies.aspx.
The documentation appears incorrect. I am not doing any editing nor sorting nor filtering. I ended up with the following:
I received an error about resizing so I then included the following (incorrect docs?):
Now I just receive the error "undefined is not a function" from this last file.
Sorry if this is a duplicate, there does not appear to be a search function for the Kendo forums.
The documentation appears incorrect. I am not doing any editing nor sorting nor filtering. I ended up with the following:
<script src="scripts/kendo.core.min.js"></script>
<script src="scripts/kendo.data.min.js"></script>
<script src="scripts/kendo.grid.min.js"></script>
<script src="scripts/kendo.pager.min.js"></script>
<script src="scripts/kendo.selectable.min.js"></script>
I received an error about resizing so I then included the following (incorrect docs?):
<script src="scripts/kendo.resizable.min.js"></script>
Now I just receive the error "undefined is not a function" from this last file.
Sorry if this is a duplicate, there does not appear to be a search function for the Kendo forums.