In OnSelect button ı want to use Navigate and Set . Is it possible to use together navigate and set ?
Tugba
Solved! Go to Solution.
Set(VarName, “Value”);Navigate(Screen1)
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Set(VarName, “Value”);Navigate(Screen1)
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi @tugba ,
Could you please share a bit more about your scenario?
Do you want to pass a variable value from one screen to another screen?
If you want to use Navigate function together with Set function within the OnSelect property of a Button, please take a try with the following workaround:
Set the OnSelect property of the Button to following:
Set(Variable1, "Specific Value"); Navigate(AnotherScreen, ScreenTransition.None)
If you want to pass a variable value from one screen to another screen, I think the Navigate function could achieve your needs.
Set the OnSelect property of the Button to following:
Navigate(AnotherScreen, ScreenTransition.None, {ContextVariable1: "Specific Value"})
Then you could use ContextVariable1 within your another screen.
Please take a try with above solution, then check if the issue is solved.
Best regards,
User | Count |
---|---|
162 | |
96 | |
76 | |
72 | |
59 |
User | Count |
---|---|
213 | |
166 | |
97 | |
95 | |
78 |