Hi,
I was able to get the Deep Linking working from a hyperlink. It is brilliant!
https://web.powerapps.com/apps/<appid>?ID=37
BrowseGallery1
Add a Timer Control
OnTimerEnd
If(Not(IsBlank(Param("ID"))),Navigate(DetailScreen1, Cover,{device:LookUp('Listname', ID = Value(Param("ID")))}))
AutoStart of timer
true
Visible property of timer
false
Duration of timer
600
Hint
Inserted label with Text Param("ID") to see if ID was getting set properly
DetailForm1
Item
First(Filter('Listname',ID=Value(Param("ID"))))
This works great when linking from an email, for eample
If I use the app, and click the OnSelect in the BrowseGallery
It hangs on Getting Your Data
The OnSelect is set to Navigate(DetailScreen1, ScreenTransition.None)
Does anyone know if I need another if statement in the OnSelect?
Thank you,
Joanna