I have a simple tabpanel. I want to fetch currently active tab's child components and destroy them and doLayout(). The following code won't work:
Ext.getCmp('centertabpanel').getActiveTab().items.destroy();
feedback
|
|
One thing to keep in mind here is that tabs in TabPanel's in ExtJS just need to be a BoxComponent in ExtJS 3 or a Component in ExtJS 4. This means that tabs are not required to hold children elements. However, if you know that your If your tab is a container that has
If you want to set
| ||||
|
feedback
|