nrevelle
29 Oct 2007, 1:11 PM
I'm trying to make two panel region. Center & East. I need the center to be locked at 775px and East to adjust to the browser width. I've tried many combinations of size and minSize, and initialSize with no luck.
var layout = new Ext.BorderLayout(document.body, {
east : {
split: true,
titlebar: false,
autoScroll: true
},
center: {
titlebar: false,
minSize: 775,
initialSize: 775,
autoScroll: true
}
});
var layout = new Ext.BorderLayout(document.body, {
east : {
split: true,
titlebar: false,
autoScroll: true
},
center: {
titlebar: false,
minSize: 775,
initialSize: 775,
autoScroll: true
}
});