下面的ExtJS的代碼創建兩個區域彼此的左邊和右邊,像這樣:如何在ExtJS表格佈局中對齊兩個區域?
我有什麼改變這個代碼,以便在兩個區域頂部對齊?
<script type="text/javascript">
var template_topbottom_top = new Ext.Panel({
frame: false,
border: false,
header: false,
items: []
});
var template_topbottom_bottom = new Ext.Panel({
frame: false,
border: false,
header: false,
items: []
});
var template_topbottom = new Ext.Panel({
id:'template_topbottom',
baseCls:'x-plain',
renderTo: Ext.getBody(),
layout:'table',
layoutConfig: {columns:2},
defaults: {
frame:true,
style: 'margin: 10px 0 0 10px; vertical-align: top' //doesn't work
},
items:[{
width: 210,
height: 300,
frame: false,
border: true,
header: false,
items: [template_topbottom_top]
},{
width: 1210,
height: 200,
frame: false,
border: true,
header: false,
items: [template_topbottom_bottom]
}
]
});
replaceComponentContent(targetRegion, template_topbottom, true);
</script>
提示:您正在嵌套組件。您的'template_topbottom'中的'items'應直接引用'template_topbottom_top'和'template_topbottom_bottom',而不是創建一個新的'items',並將它們作爲該陣列中孤獨的面板。另外,如果項目包含單個組件,則不需要用數組包裝它。 –