次のtbarアイテムがあります。ボタン内のテキストを左揃えにしようとしています。しかし、私はそうすることができません。助言がありますか?
{
tbar: [
{
xtype: 'button',
text: 'Home',
width: 120,
align:'left',
handler: function() {
document.location.href = BasePath;
}
}
]
},
{
tbar: [
{
xtype: 'button',
text: 'View Transfer Numbers',
width: 120,
handler: function() {
document.location.href =BasePath+'transfer';
}
}
]
}