Code:
Ext.onReady(function () {
var panel1 = new Ext.Panel({
title: 'Panel frame=false',
width: 600,
height: 400,
layout: 'border',
renderTo: Ext.getBody(),
items: [{
xtype: 'panel',
title: 'center',
html: 'center',
margins: '5 5 5 5',
region: 'center'
},{
xtype: 'panel',
title: 'north',
html: 'north',
region: 'north',
margins: '5 5 0 5'
},{
xtype: 'panel',
title: 'east',
html: 'east',
region: 'east',
margins: '5 5 5 0',
cmargins: '5 5 5 0',
width: 200,
collapsible: true
}]
});
Ext.getBody().createChild({tag:'br'});
var panel2 = new Ext.Panel({
frame: true,
title: 'Panel frame=true',
width: 600,
height: 400,
layout: 'border',
renderTo: Ext.getBody(),
items: [{
xtype: 'panel',
title: 'center',
html: 'center',
margins: '5 5 5 5',
region: 'center'
},{
xtype: 'panel',
title: 'north',
html: 'north',
region: 'north',
margins: '5 5 0 5'
},{
xtype: 'panel',
title: 'east',
html: 'east',
region: 'east',
margins: '5 5 5 0',
cmargins: '5 5 5 0',
width: 200,
collapsible: true
}]
});
});