Re: Editorgrid Not Reloading Properly
Suppose I did something like this and pointed contentPanel to the various forms and grids as required?:
var vp = new Ext.Viewport({
layout : 'border',
boxMaxWidth: 980,
defaults : {
frame : true,
split : true
},
items : [
{
region : 'north',
height : 40,
items : mainTBar
},
{
region : 'west',
width : 375,
items : {}
},
{
region : 'center',
width : 605,
xtype : 'container',
layout : 'fit',
id : 'content',
items : contentPanel
}
]
});
|