在 semantic:footerCustomActions 的页脚中的按钮之间添加文本

add text between buttons in the footer of semantic:footerCustomActions

我正在寻找一种在 'semantic:negativeAction' 的按钮和 'semantic:positiveAction' 的按钮之间添加文本的方法,在 [=16= 的语义页面内的语义内容的页脚中].

<semantic:positiveAction>
        <semantic:PositiveAction  text="+"/>
    </semantic:positiveAction>



    <semantic:negativeAction>
        <semantic:NegativeAction text="-" />
    </semantic:negativeAction>

您是否考虑过在页脚的语义页面中使用 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>

Link: https://sapui5.hana.ondemand.com/#/api/sap.m.semantic.SemanticPage