It looks like it’s this section of jqx-all.js that is having problems. aq = ak.map(an)
ak is an array with name and type defined as name: “Server_Name”, type: “string” and has map and part of the prototype of an array.
an is an object with these properties.
Server_Name: “Server 1”
Server_Size: “911481”
if (ak.map) {
if (i.isFunction(ak.map)) {
aq = ak.map(an)
} else {
var ai = ak.map.split(ag.mapChar);
if (ai.length > 0) {
var am = an;
for (var aj = 0; aj < ai.length; aj++) {
if (!am) {
continue
}
am = am[ai[aj]]
}
aq = am
} else {
aq = an[ak.map]
}
}
if (aq != undefined && aq != null) {
aq = aq.toString()
} else {
if (aq == undefined && aq != null) {
aq = ""
}
}
}