I have an Ext TabPanel and am trying to set a hidden property for one of the tabs programmatically. I can select the object and call methods, such as disable () and enable (), but so far I have not been able to find a means by which I can manipulate the hidden Tab property.
Tab is defined as
{ id: "view-task", hidden: false, title: "View" }
and code trying to manipulate it
twin = ( Ext.getCmp('view-task')); twin.disable();
The above call is for disabling work, so the component is correctly selected, but I do not know how to manipulate the hidden property.
Any help would be greatly appreciated.
N. Euzebe
source share