取决于输入动态按钮中的值需要在ui5中呈现

时间:2018-07-09 10:39:19

标签: javascript sapui5

取决于输入字段中的值,需要在UI5中呈现动态按钮。 我该如何实现?

谢谢。

2 个答案:

答案 0 :(得分:0)

问题不是很清楚。但是,以下代码应有所帮助。

最初,您可以在视图中使用属性visible =“ false”的按钮,并使用以下代码

        <Input
            id="productInput"
            type="Text"
            liveChange="onInputFieldDataChange"

        </Input>

onInputFieldDataChange: function(oEvent){

>         Now, here for all buttons which you want to render.

    this.getView().byId("idOfTheButton").setVisible(true);

}

答案 1 :(得分:0)

<Input type="Text" value="{oLocalModel>/myInput}" valueLiveUpdate="true" />
<Button visible="{= ${oLocalModel>/myInput} === 'foo' }" /> <!-- If input value === foo the button is visible