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()
});