1
2
3
4
Hello Guys...I'm creating a voting apps....the flow you can see on picture above....this screenshot is running on desktop....the problem is WHEN APP RUNNING ON MOBILE PHONE.... the page 4 (pic4) the nomination name that we selected on previous page(page My nominee) on radio button list not appear on page 4......
code at radio button on page 3:-
property OnChange : UpdateContext({selected: Radio1.Selected.Value})
code at lable on page 4:-
property Text : Radio1.Selected.Value
what throubleshoot can I do?
This apps will launch soon.....really need help and direct solutions....ASAP thank you
CC: @CarlosFigueira @Jeff_Thorpe @Shanescows
What is your data source? What does the code look like on screen 4 for displaying the person you chose?
code at lable on page 4:-
property Text :
Radio1.Selected.Value
I just want to display what are selected on Radio buttion appear on that confirm screen....
The selected data still save in excel on page 3 nominee page...
the confirmation screen page 4 just want to display what are the user selected on previous page...
That should work 😐
I see that on page you have...
property OnChange : UpdateContext({selected: Radio1.Selected.Value})
On page 4, you could use your new context variable "selected," so your page 4 property would just be...
selected
Let me know if that resolves your issue. I'll also file a bug on our send so we can try to resolve the issue on our end.
Hi,
Instead of using UpdateContext({selected: Radio1.Selected.Value }) on page 3, can you use Radio1.OnChange = Set(selectedPerson, Radio1.Selected.Value) ?
With Set function, you will be setting the global variable and can use the value anywhere in the app. So, on page4 you can actually use selectedPerson instead of Radio1.Selected.Value.
User | Count |
---|---|
134 | |
131 | |
78 | |
75 | |
71 |
User | Count |
---|---|
210 | |
198 | |
67 | |
62 | |
53 |