我现在想用ext布局:整个页面分为三部分,左边树,右边分上下两块,该如何布局呢?
1条回答 默认 最新
- leehuat 2014-05-26 14:23关注
[code="java"]
Ext.create('Ext.Viewport', {
layout: {
type: 'border',
padding: 5
},
defaults: {
split: true
},
items: [{
region: 'west',
collapsible: true,
title: 'North',
split: true,
height: 100,
minHeight: 60,
html: 'north'
},{
region: 'center',
title: 'Starts at width'
items: [{
title: 'Central',
region: 'center',
minWidth: 80,
html: 'Central'
}, {
title: 'north',
region: 'north',
flex: 1,
minWidth: 80,
html: 'north Eastern',
split: true,
collapsible: true
}]
}]
});
[/code]本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报