Hello Community!
I have a text field(PointsField) that contains a number value in my gallery. I would like to be able to click the button with the 5 on it and increase the text field value by 5. Any suggestions?
Put this code in the OnVisible property of the screen.
Set(myCustomValue, 30)
Use this code in the Default property of the Text Input you want to increase by 5
myCustomValue
Finally, take this code and use it in the OnSelect property of the button
Set(myCustomValue, myCustomValue + 5)
Reset(Text_Input_FieldName);
Ensure the DisplayMode of the Text Input is set to this so the user cannot manually edit
DisplayMode.View
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
User | Count |
---|---|
224 | |
100 | |
94 | |
57 | |
31 |
User | Count |
---|---|
282 | |
114 | |
110 | |
63 | |
57 |