I am using Extjs 4.1.1
我有面板,我在底部添加了工具栏。这个工具栏有 3 个项目,我想在第一行中放置第一个项目,并在下一行保留两个项目,即在其他项目下方。
如图所示,我想将如上所示的项目与红色矩形对齐。我的代码如下所示。
请建议我该怎么做?
我的代码是这样的
dockedItems: [
{
xtype: 'toolbar',
dock: 'bottom',
height:60,
items: [
{
xtype: 'tbtext',
id:'costId',
text : "Total Cost <br> $66,000",
height : 40
},
{
xtype: 'button',
autoAlign: 'bottom',
id: 'saveButton',
text: 'Add to BOM',
handler: function() {
saveProduct();
}
},
{
xtype: 'button',
autoAlign: 'bottom',
id: 'cancelButton',
text: 'Cancel',
handler: function() {
cancel();
}
}
] }],