I get a weird error when using a component in another tab: Runtime-fout JavaScript: Missing DOM node in element garbage collection: combo-1563-triggerWrap
At happens when i click the tab where my grid with component column is rendered. I fixed this with the following: componentGC, but when destroy is called ( Ext.destroy(this.getRefItems()); ) it just crashes again. Cant seem to figure out why.
Code:
{
dataIndex: 'Contact',
flex: 1,
xtype: 'componentcolumn',
componentGC: false,
renderer: function (contact, meta, record) {
return {
xtype: 'combo',
store: userStore,
valueField: 'Id',
displayField: 'Name',
value: contact
}
}
}