将自定义标题添加到sap.m.Dialog

时间:2015-08-12 15:41:35

标签: sapui5

我想在我的sap.m.Dialog添加带有按钮的自定义标题。

1 个答案:

答案 0 :(得分:3)

documentation中,您可以看到sap.m.Dialog有一个聚合customHeader,其中包含任何" Bar-Interface" (目前为sap.m.Barsap.m.Toolbar)。

例如:

<Dialog>
    <customHeader>
        <Bar>
            <contentLeft>
                <Button />
            </contentLeft>
            <contentMiddle>
                <Title text="Dialog Title" />
            </contentMiddle>
        </Bar>
    </customHeader>
    <!-- Content here -->
</Dialog>