I use this code to make a panel->frame value = true at run time:
Ext.apply(mypanel, {frame: ‘true’});
but it doesn’t work !!
and when I use:
Ext.apply(mypanel, {collapsible: ‘true’});
it is working fine!!
Do I miss something here, how can I turn a panel->frame to true at run time?
1 Answer