Unanswered: Ext 1.1 's ContentPanel with BorderLayout mapping to Ext 4.x
Unanswered: Ext 1.1 's ContentPanel with BorderLayout mapping to Ext 4.x
Hi....
I am in a process to convert an Ext 1.1 application into Ext 4.x application. I don't know how to write the code
for Ext.ContentPanel of Ext1.1 into Ext 4.x.... please help...
Following code needs to be written in the Ext 4.x format.
layout.beginUpdate();
layout.add('north', new Ext.ContentPanel('north', 'North'));
layout.add('south', new Ext.ContentPanel('south', 'South'));
center = layout.getRegion('center');
center.add(new Ext.ContentPanel('main', {fitToFrame:true}));