1
私はこのコードでsap.mからツールバーを作成:右側のsap.m.Toolbarにsap.m.Buttonを配置する方法は?
var oPage = new sap.m.Page({
title: "Statusverfolgung",
footer: new sap.m.Toolbar({
content: [
new sap.m.Button({
text: "Next status"
})
]
}),
content: [
oBox
]
});
今、このボタンは左側に配置されます。どのように私はそれを右に置くことができますか?