markalroberts
6 Jan 2010, 7:33 AM
If you remove() a combobox from a container, the combobox's container is also removed!
The combobox's removeMode = 'container', so this code gets called in the component's destroy method:
if(this.rendered){
this.el.remove();
if(this.actionMode == 'container' || this.removeMode == 'container'){
this.container.remove();
}
}
This is totally breaking my innerCt's dom in my column layout :(
The combobox's removeMode = 'container', so this code gets called in the component's destroy method:
if(this.rendered){
this.el.remove();
if(this.actionMode == 'container' || this.removeMode == 'container'){
this.container.remove();
}
}
This is totally breaking my innerCt's dom in my column layout :(