penot
20 Jun 2012, 5:56 AM
ext-all-debug.js line 40456 char 17
createAccessor: (function() {
var re = /[\[\.]/;
return function(expr) {
if (Ext.isEmpty(expr)) {
return Ext.emptyFn;
}
if (Ext.isFunction(expr)) {
return expr;
}
if (this.useSimpleAccessors !== true) {
var i = String(expr).search(re);
if (i >= 0) {
return Ext.functionFactory('obj', 'return obj' + (i > 0 ? '.' : '') + expr);
}
}
return function(obj) {
--> return obj[expr];
};
};
}()),
SCRIPT5007: Unable to get value of the property 'id': object is null or undefined (http://stackoverflow.com/questions/8351638/ie-7-8-issue-unable-to-get-value-of-the-property-id-object-is-null-or-undef) error
Why this happens is that :-/
createAccessor: (function() {
var re = /[\[\.]/;
return function(expr) {
if (Ext.isEmpty(expr)) {
return Ext.emptyFn;
}
if (Ext.isFunction(expr)) {
return expr;
}
if (this.useSimpleAccessors !== true) {
var i = String(expr).search(re);
if (i >= 0) {
return Ext.functionFactory('obj', 'return obj' + (i > 0 ? '.' : '') + expr);
}
}
return function(obj) {
--> return obj[expr];
};
};
}()),
SCRIPT5007: Unable to get value of the property 'id': object is null or undefined (http://stackoverflow.com/questions/8351638/ie-7-8-issue-unable-to-get-value-of-the-property-id-object-is-null-or-undef) error
Why this happens is that :-/