我在页面的按钮上有一个按钮,按下时会打开一个对话框。 当对话框出现时,页面会自动滚动到顶部。 有人知道如何避免这种情况吗?我还想问一下如何将文本放在对话框内容中。
谢谢。
我的代码:
var oDialog = new sap.m.Dialog({
icon: "sap-icon://hint",
showHeader: true,
content: new sap.m.Text({
text: "Are you sure you want to navigate away?"
}),
buttons: [new sap.m.Button({
text: "OK",
press: function() {
fNav()
oDialog.close()
}
}),
new sap.m.Button({
text: "CANCEL",
press: function() {
oDialog.close()
}
})
],
})
对话框的打印屏幕: