I want to hide the panel until the item clicks.
xtype: 'processform', id: 'processCol2', hidden: true, columnWidth: 0.5
So good. The panel is hidden. But how can I turn it on again.
I tried the following
var panel = Ext.getCmp('processCol2'); panel.hidden = false; panel.setVisible(true);
source share