我需要在布局边框的北部添加两个框
它会是这样的:我需要添加红色的框/面板(但我不想保留边框)
这是我的尝试:
...
{
region: 'north',
split: true,
//xtype : 'box',
height: 100,
layout : 'anchor',
items: [{ xtype: 'box', id: 'header', height: 100, anchor: '70%',
html: '<h1> my title</h1>'},
{
xtype: 'panel', title: 'title', border: 'false', frame: false, height: 100,
html: '<h1> my info</h1>'
}]
}
...
第二个面板不起作用
谢谢你的帮助