取决于输入字段中的值,需要在UI5中呈现动态按钮。 我该如何实现?
谢谢。
答案 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