Hello!
I am getting the above error out of the blue. I can’t find a trigger, sometimes I find the page non responsive without even using it.
In the console I see that is reporting the problem in jqxcore.js, starting with the line 5670:17
var g = typeof(e) == Array || e.length > 0 ? e[0] : e;
The code surrounding the above line is :
b.jqx.hasFunction = function(f, e) {
if (e.length == 0) {
return false
}
if (f == undefined) {
return false
}
var g = typeof(e) == Array || e.length > 0 ? e[0] : e;
var d = typeof(e) == Array || e.length > 1 ? Array.prototype.slice.call(e, 1) : {};
while (f[g] == undefined && f.base != null) {
if (f[g] && b.isFunction(f[g])) {
return true
}
if (typeof g == "string") {
var c = g.toLowerCase();
if (f[c] && b.isFunction(f[c])) {
return true
}
}
f = f.base
}
if (f[g] && b.isFunction(f[g])) {
return true
}
if (typeof g == "string") {
var c = g.toLowerCase();
if (f[c] && b.isFunction(f[c])) {
return true
}
}
return false
};
Any idea how to approach this?
Thanks,
Chris