作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道在 UI5 中覆盖 sap.m.Dialog
的默认行为的 escapeHandler
通过 Controller ,例如:
this._oDialog.setEscapeHandler((oEscapeHandler) => {
oEscapeHandler.reject();
});
问题是是否可以提供替代方案
escapeHandler
通过 XML 模板的行为而不使用
setEscapeHandler
?
escapeHandler = "none/customFunction"
,例如:
<Dialog
id = "authDialog"
title = "{i18n>DIALOG_TITLE}"
type = "Message"
escapeHandler = "%CUSTOM_ESCAPE_HANDLER%">
</Dialog>
特别是,我想禁用
Dialog
关闭 Esc 按钮按下并通过 XML 模板以优雅的声明方式完成,例如
escapeHandler = "none"
.
最佳答案
有一个 new commit (今天合并)允许将 Controller 功能分配给 escapeHandler
.有了这个,下面的代码现在是可能的:
<Dialog xmlns="sap.m"
id="authDialog"
title="{i18n>DIALOG_TITLE}"
type="Message"
escapeHandler=".handleEscape"
>
handleEscape: function(pEscapePending) {
// Depending on the use case, call pEscapePending.resolve() or pEscapePending.reject() to overwrite the default behavior.
},
该修复程序应该在 1.86 版本中可用。
关于sapui5 - 如何通过 UI5 中的 XML 模板覆盖/禁用 `escapeHandler` 的 `Dialog`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64599658/
我知道在 UI5 中覆盖 sap.m.Dialog 的默认行为的 escapeHandler通过 Controller ,例如: this._oDialog.setEscapeHandler((oEs
我是一名优秀的程序员,十分优秀!