leebyeungok
21 Oct 2011, 5:22 PM
Ext.application({
name:'HBOX',
launch:function(){
var mainPanel = Ext.create('Ext.Container', {
fullscreen: true,
layout: 'hbox',
items: [
{
xtype:'panel',
dock:'top',
html:'dock top panel',
height: 100,
style:' background: #FF00FF',
},
{
xtype:'panel',
html:'first',
flex:1,
style:'background:#FF0000',
},
{
xtype:'panel',
html:'second panel',
flex:2,
style:'background:#00FF00',
},
{
xtype:'panel',
html:'third panel',
flex:2,
style:' background: #0000FF',
}
]
});
//now we add the first panel inside the second
}
});
dock:'top' is not work....!!
28795
name:'HBOX',
launch:function(){
var mainPanel = Ext.create('Ext.Container', {
fullscreen: true,
layout: 'hbox',
items: [
{
xtype:'panel',
dock:'top',
html:'dock top panel',
height: 100,
style:' background: #FF00FF',
},
{
xtype:'panel',
html:'first',
flex:1,
style:'background:#FF0000',
},
{
xtype:'panel',
html:'second panel',
flex:2,
style:'background:#00FF00',
},
{
xtype:'panel',
html:'third panel',
flex:2,
style:' background: #0000FF',
}
]
});
//now we add the first panel inside the second
}
});
dock:'top' is not work....!!
28795