通过启用showValueHelp =“true”

时间:2017-10-24 08:01:24

标签: sapui5

我想通过单击控件sap.m.input中的帮助指示器来显示密码。

根据代码valueHelpRequest方法必须触发但在单击帮助指示器时不会触发。

2 个答案:

答案 0 :(得分:1)

它对我来说很好。分享一些代码。 jsbin sample

js查看代码

createContent: function(oController) {
                // button text is bound to Model, "press" action is bound to Controller's event handler
                return new sap.m.Input({text:'{/actionName}',press:oController.doSomething,showSuggestion:true,showValueHelp:true,valueHelpRequest:oController.onVHR});
            }

答案 1 :(得分:0)

我有解决方法: var oInput = this.getView()。byId(“ idName”); oInput.attachValueHelpRequest(function(){    console.log(“您单击值帮助器。”) });