Reputation: 31
I'm trying to get the new kendo scheduler widget to work in a kendo mobile application. As soon as I switch views (Go from month to week), it crashes. Same code works great on Chrome and Firefox. The error in logcat is
Uncaught TypeError: Cannot call method 'destroy' of undefined at file:///android_asset/www/app/frameworks/kendoui/js/kendo.all.min.js:30
Upvotes: 2
Views: 511
Reputation: 1439
I know this question is pretty old, but I ran into this issue today. It seems like if you set the individual "editables" to false
you get the same results without the error.
So instead of:
editable: false
try using:
editable: {
create: false,
destroy: false,
resize: false,
update: false
}
Upvotes: 1