Hello,
I am building an app that is meant to serve as a central hub app that will allow the user to navigate to several smaller apps that use the same data source. I would like for the user to be able to click a button within the main app and be transported to a specific record within the target app.
I have set a variable using Employee ID and the target app pulls the correct Employee ID in the URL but does not navigate to the specific record. Here's my setup for the main app:
OnStart: Set(varEmpID, Value(Param("EmpID")));
If (varEmpID <> 0, Set(varRecord, LookUp('Data Source', ID = varEmpID)))
Items: Search('Data Source',TextSearchBox1.Text,"Title")
Next Arrow: Set(varRecord, ThisItem); Navigate(DetailScreen1)
Here's my setup for the target app:
OnStart: Set(varEmpID, Value(Param("EmpID")));
If (varEmpID <> 0, Set(varRecord, LookUp('Data Source', ID = varEmpID));Navigate(DetailScreen1))
Items: Search('Data Source',TextSearchBox1.Text,"Title")
For both apps the Visible field of the start screen gallery is set to True and OnSelect is set to Navigate(DetailScreen1, ScreenTransition.None)
On both apps I also have the retired feature "Enable Navigation Function in App.OnStart" toggled on as well.
Any help on this is really appreciated.