This is a migrated thread and some comments may be shown as answers.

[URGENT] Angular Kendo, Starnge error with JQuey

3 Answers 68 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Matt
Top achievements
Rank 1
Matt asked on 22 Jul 2013, 09:35 PM
Hello,
I am getting a strange error when I use KendoGrid (Angular). The following is the stack trace. Can some one please let me know whats going on?

Thanks
Matt'M

TypeError: Object function JQLite(element) {
if (element instanceof JQLite) {
return element;
}
if (!(this instanceof JQLite)) {
if (isString(element) && element.charAt(0) != '<') {
throw Error('selectors not implemented');
}
return new JQLite(element);
}

if (isString(element)) {
var div = document.createElement('div');
// Read about the NoScope elements here:
// http://msdn.microsoft.com/en-us/library/ms533897(VS.85).aspx
div.innerHTML = '<div>&#160;</div>' + element; // IE insanity to make NoScope elements work!
div.removeChild(div.firstChild); // remove the superfluous div
JQLiteAddNodes(this, div.childNodes);
this.remove(); // detach the elements from the temporary DOM div.
} else {
JQLiteAddNodes(this, element);
}
} has no method 'extend'
at gatherOptions (http://localhost:3000/no_npm_vendor/kendo/angular-kendo.js:39:35)
at Object.create (http://localhost:3000/no_npm_vendor/kendo/angular-kendo.js:107:19)
at http://localhost:3000/no_npm_vendor/kendo/angular-kendo.js:164:36
at <error: illegal access>
at completeOutstandingRequest (http://localhost:3000/vendor/angular/angular.js:3041:10)
at http://localhost:3000/vendor/angular/angular.js:3327:7 angular.js:5754(anonymous function)angular.js:5754(anonymous function)angular.js:4846(anonymous function)angular.js:9476completeOutstandingRequestangular.js:3041(anonymous function)

3 Answers, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 23 Jul 2013, 07:06 AM
Hi Matt,

 The angular-kendo library is part of the Kendo UI Labs projects. As such, these projects are not officially supported by the Kendo UI team. Any support requests (via tickets or Forum posts) should go to either StackOverflow, or to the Issues list for that project.

Regards,
Atanas Korchev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
luis
Top achievements
Rank 1
answered on 01 Aug 2013, 03:22 PM
Matt, Did you find a solution for this issue ?
0
Burke
Telerik team
answered on 02 Aug 2013, 05:55 AM
Hi,

 As Atanas said, we take these questions on the issues list over on the GitHub repo as this is an open source community project.

For this specific error, make sure that you include jQuery before AngularJS.

Regards,
Burke
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Grid
Asked by
Matt
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
luis
Top achievements
Rank 1
Burke
Telerik team
Share this question
or