PowerApps如何在单击按钮时更改文本框中的文本

时间:2018-02-28 16:11:57

标签: powerapps

我正在尝试通过单击PowerApps中的按钮来执行更改文本框中文本的简单任务。

我的页面上有一个按钮“Button1” - 和一个文本框“TextInput2”。

按钮OnSelect操作设置为:TextInput2.Text =“hello”

单击按钮时没有任何反应。文本框的文本保持不变。

我还在按钮的OnSelect操作中尝试了UpdateContext({TextInput2:“Hi”})。

有没有办法在PowerApps中这样做,我可能只是缺少?

谢谢Mark,

1 个答案:

答案 0 :(得分:3)

最后了解PowerApps。

将文本框的文本属性设置为:

UpdateContext({HasBeenPressed:true})

将按钮的OnSelect事件设置为:

csvarticles = [['[Beta-blockers]', 'Magic!', '1980', 'Presse medicale'],['Hypertension in the pregnant woman].', '', '2010', 'Medical'],['Arterial hypertension.', '', '1920', 'La Nouvelle']]
res = []
for i in csvarticles:
    r = []
    for j in i:
        r.append("".join([k for k in j if (k.isalnum() or k.isspace())]).lower())
    res.append(r)
print(res)

......它正在工作。

我希望这有助于其他人。