hello all,
i have a canvas app with a single screen named : "Screen" and there is a form named "New"
i have a canvas app with a single screen named : "Screen" and there is a form named "View".
- At the APP of the View i have: If(!IsBlank(Param("ID")),Set(varID, Param("ID"));Navigate(Screen,ScreenTransition.Fade))
- At the form "View" on the item i have: If(!IsBlank(Param("ID")),LookUp('ListName',ID = varID))
and the reason is when i call the app to open the item which i want to View.
what i would like to do is to create a new canvas all which will combine both screens "New" and "View". When they press the link to go to new but when they press an item with ID to then go to the "View" screen.
i believe i have to change the APP formula but i dont know how and this is what i have tried till now:
If(!IsBlank(Param("ID")),Set(varID, Param("ID"));Navigate(ScreenNew,ScreenTransition.Fade);
LookUp('Desktops Laptops',ID = varID)); Navigate(ScreenView,ScreenTransition.Fade);
thank you