我正在玩 ExtJS 4.2.1 的表格布局。你可以在这个 fiddle中看到结果。
基本上我所期望的是表格使用面板的 100% 宽度来正确应用 colspan。
另外,如果您使用 Firefox 看它是坏的,那么也许我以错误的方式使用这个布局?
例子:
Ext.create('Ext.panel.Panel', {
title: 'Table Layout',
width: 300,
height: 150,
layout: {
type: 'table',
// The total column count must be specified here
columns: 3
},
defaults: {
// applied to each contained panel
bodyStyle: 'padding:20px'
},
items: [{
html: 'Cell B content',
colspan: 2,
xtype: 'panel'
},{
html: 'Cell C content',
xtype: 'panel'
},{
html: 'Cell D content',
xtype: 'panel'
}],
renderTo: Ext.getBody()
});