
Originally Posted by
Alberteddu
I'll check it out. Thank you... again.

This is my code now:
Code:
new Ext.Viewport({
layout : 'border',
defaults : {
height: '100',
width: '100',
resizable: true
},
items : [
{
region: 'center',
items: [
new Ext.TabPanel({
activeTab:0,
items:[{
title: 'Client',
autoScroll:true,
items: [
new Ext.Panel({
layout:'border',
width: '100%',
defaults: {
split: true
},
items: [{
region: 'south',
height: 100,
minSize: 75,
maxSize: 250,
},{
region:'east',
width: 200,
minSize: 100,
maxSize: 300
},{
region:'center',
}]
})
]
},{
title: 'Center Panel',
autoScroll:true
}]
})
]
}
]
})
It seems to work. I did follow the screencast but I think there's still something which is not going well there.
For example, is there a way to tell the layout in first tab "please stretch yourself until you reach the end of the page"? I mean, his height is still 0. It changes just when I set an absolute value.