我正在寻找一种方法,在“sap.f.semantic”语义页面中的语义内容页脚中的“语义:否定动作”按钮和“语义:正操作”按钮之间添加文本。
<semantic:positiveAction>
<semantic:PositiveAction text="+"/>
</semantic:positiveAction>
<semantic:negativeAction>
<semantic:NegativeAction text="-" />
</semantic:negativeAction>发布于 2019-04-01 10:55:18
您考虑过在页脚的语义页中使用customFooterContent聚合吗?
<semantic:customFooterContent>
<Button text="Approve" type="Accept" press="onAcceptPress"/>
<Label text="Test Text between two buttons"></Label>
<Button text="Reject" type="Reject" press="onRejectPress"/>
</semantic:customFooterContent>链接:https://sapui5.hana.ondemand.com/#/api/sap.m.semantic.SemanticPage
https://stackoverflow.com/questions/55453055
复制相似问题