gpt4 book ai didi

javascript - 如何顶部对齐 ExtJS 表格布局中的两个区域?

转载 作者:可可西里 更新时间:2023-11-01 02:32:26 30 4
gpt4 key购买 nike

下面的 ExtJS 代码在彼此的左侧和右侧创建了两个区域,如下所示:

enter image description here

我必须对此代码进行哪些更改才能使这两个区域顶部对齐?

<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>

最佳答案

在 ExtJS 4 中,您可以使用 tdAttrs 配置选项:

layout: {
type: 'table',
columns: 2,
tdAttrs: {
valign: 'top'
}
}

关于javascript - 如何顶部对齐 ExtJS 表格布局中的两个区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5220253/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com