我想在我的sap.m.Dialog
添加带有按钮的自定义标题。
答案 0 :(得分:3)
在documentation中,您可以看到sap.m.Dialog
有一个聚合customHeader
,其中包含任何" Bar-Interface" (目前为sap.m.Bar
或sap.m.Toolbar
)。
例如:
<Dialog>
<customHeader>
<Bar>
<contentLeft>
<Button />
</contentLeft>
<contentMiddle>
<Title text="Dialog Title" />
</contentMiddle>
</Bar>
</customHeader>
<!-- Content here -->
</Dialog>