如何在sap ui5中的文本字段中添加onfocus()功能而不是liveChange(),我们尝试使用onfocusin(),它不起作用,建议更多功能。
答案 0 :(得分:2)
使用attachBrowserEvent
方法:
oYourTextControl.attachBrowserEvent("onfocus", function(oEvent) {
// do whatever
});
https://openui5.hana.ondemand.com/#docs/api/symbols/sap.ui.core.Control.html#attachBrowserEvent