- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 SAPUI5 开发人员指南中,我找到了有关处理事件的说明:
Handling Events in XML Views. Event handlers are used as attributes. The attribute name is the event name, such as "press" for a button, and the attribute value as event handler name. The event handler must be defined as a function in the view's controller. To attach an event handler in a XML view, insert the following declaration: ...
<Button text="Press Me" press="doSomething"/>
... The methodcontroller.doSomething()
is executed when the button is pressed.
<Select change="doSomething">
controller.selectOnChange
函数,并将 «this 参数绑定(bind)到 Controller 本身»。但是,当我在 JavaScript View 中绑定(bind)此事件处理程序时,«this 参数已绑定(bind)到选择元素»。
new sap.m.Select({ change : oController.doSomething })
最佳答案
在 JS View 中,当您指定这样的处理程序时:
new sap.m.Button({
text: "Press Me",
press: oController.myHandler
})
this
在处理程序中绑定(bind)到控件本身。
new sap.m.Button({
text: "Press Me",
press: [oController.myHandler, oController]
})
this
势必会。
SinglePageExamples
.
关于sapui5 - JavaScript View 中的正确事件绑定(bind)?与 XML View 不同的 this 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21528745/
我正在使用 sapui5 创建一个表。我想知道我是否可以将升序排序和降序排序的默认图标更改为我自己的图标? 补充问题:有没有一种方法可以在标题中显示我的自定义图标而无需先点击它? 最佳答案 只需在 W
我如何在 SapUI5 中构建一个 XML View 来迭代 JSONModel 中的所有元素? 到目前为止,我有一个 Controller : sap.ui.define([ "sap/ui
我是一名优秀的程序员,十分优秀!