我有一个带有一些按钮的工具栏。我希望工具栏中的按钮向右对齐。我怎样才能做到这一点 ?这是代码
items: [{
xtype: 'toolbar',
dock: 'top',
buttonAlign: 'right', // This one does not wrok
align: 'right', // This one does neither
items: [{
text: 'Foo1'
}, {
text: 'Foo2'
}, {
text: 'Foo3'
}]
}, {
// Some other items
}]