如何在sap ui5中的文本字段中添加onfocus()功能而不是liveChange()

时间:2015-04-01 14:33:26

标签: sapui5

如何在sap ui5中的文本字段中添加onfocus()功能而不是liveChange(),我们尝试使用onfocusin(),它不起作用,建议更多功能。

1 个答案:

答案 0 :(得分:2)

使用attachBrowserEvent方法:

oYourTextControl.attachBrowserEvent("onfocus", function(oEvent) {
    // do whatever
});

https://openui5.hana.ondemand.com/#docs/api/symbols/sap.ui.core.Control.html#attachBrowserEvent