当我将 hbox 放置在表格布局中时,项目不可见!
Ext.create('Ext.panel.Panel', {
title: 'Hello',
width: 200,
layout: {
type: 'table',
columns: 9,
},
items: [
{
xtype: 'container',
layout: 'hbox',
items: [
{
xtype: 'container',
html: '123',
},
],
},
],
renderTo: Ext.getBody()
});