I have a panel and I pass it to the container. I want the panel to fit into the height of the container and do not want to indicate the height of the panel. but it doesn't seem to work, is there a way I could do this. Any ideas please help
<div id=Div style="width: 100%; height: 100%;"></div> var newPanel = new Ext.Panel({ id:'newPanel', renderTo:'Div', layout:'fit', border:false, items:[anotherPanel] })
source share