Ext.layout.BorderLayout對(duì)應(yīng)面板布局layout配置項(xiàng)的名稱為border。該布局包含多個(gè)字面板,是一個(gè)面向應(yīng)用的UI風(fēng)格的布局,它將整個(gè)容器分為5個(gè)部分,
分別是east, south, west, north, center, 加入到容器中的字面板需要指定region配置項(xiàng)來(lái)告知容器需要加入到哪個(gè)部分,并且該布局還內(nèi)建了對(duì)面板分割欄的支持。
這里是使用邊框布局的簡(jiǎn)單語(yǔ)法。
layout: 'border'
下面是一個(gè)簡(jiǎn)單的例子顯示了Border布局的用法
<!DOCTYPE html>
<html>
<head>
<link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet">
<script src="./ext-6.0.0/build/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function () {
Ext.create('Ext.panel.Panel', {
renderTo: Ext.getBody(),
height: 300,
width: 600,
layout: 'border',
defaults: {
collapsible: true,
split: true,
bodyStyle: 'padding:15px'
},
items: [{
title: 'Panel1',
region: 'west',
html: 'This is Panel 1'
}, {
title: 'Panel2',
region: 'center',
html: 'This is Panel 2'
}, {
title: 'Panel3',
region: 'south',
html: 'This is Panel 3'
}, {
title: 'Panel4',
region: 'east',
html: 'This is Panel 4'
}, {
title: 'Panel5',
region: 'north',
html: 'This is Panel 5'
}]
});
});
</script>
</head>
<body>
</body>
</html>
運(yùn)行結(jié)果如下:
更多建議: