I have a button that links to another page where I want it to fill in a dropdown.
So the button would be something like Navigate(Screen1,ScreenTransition.UnCover, {selectedSection: "Session 1" })
Then on Screen1 there is a dropdown called Session. I want the value from that button to be passed on to this dropdown which in this case is Session 1.
Change the code to:
Navigate(Screen1,ScreenTransition.UnCover); Set(selectedSection,"Session 1" })
Then in the Default of the Dropdown:
selectedSection
----------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
For the Default dropdown, I am getting an error.
Can you show a screen short of the first code.
Also is "Session 1" part of the values in the items on your dropdown?
what if the formula on the items property of the dropdown
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Right, the drop-down goes Session 1, Session 2, Session 3
It works fine on my test. Hope it not a Combobox?
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
It is a dropdown, I will see if I can get away with making it is text field instead. Thanks for the help.