for (; i < len; i++) {
item = items[i];
if (item == null) {
Ext.Array.erase(items, i, 1);
--i;
--len;
} else {
if (applyDefaults) {
item = this.applyDefaults(item);
}
// Tell the item we're in a container during construction
item.isContained = me;
items[i] = me.lookupComponent(item);
// need to delete both in case item was a config
delete item.isContained;
delete items[i].isContained;
Uncaught TypeError: Cannot convert null to object
}
}
Some times i get this exception on big app. ext-all-dev.js:
Uncaught TypeError: Cannot convert null to object ext-all-dev.js
with no details.
There is a Ext.List (extended) with cellclick listener with:
Ext.suspendLayouts();
Ext.create('Ext.ux.form.Panel',{ //extended form with initComponent .. this.callParent() ..)
...
});
Ext.resumeLayouts(true);
This exception throwing 1 time in few days (60 - 150 clicks);