Not exactly how to phrase my question since I'm not sure what's causing the issue.
I built a component to enable some "smart navigation" using a collection at the app OnStart - the collection contains my screen names. Then in my component is a gallery with tab-like buttons that pull in the screen names and also navigate the user to that screen when clicked. There's also some conditional formatting on the buttons based on the active screen.
Everything works as expected when I enter the app directly. However, I also have added a parameter to deeplink directly to a specific record based on the ID. If I enter the app using the deeplink, I only see the active screen's button and text (the other button is there and is clickable, but the text/formatting is missing)
Any ideas why my collection/navigation isn't firing correctly when I use the deeplink?
App OnStart
ClearCollect(ColScreenNav,{Id:1,Screen:'Executive Summary'},{Id:2,Screen:Assess});
Set(varCanvasID, Value(Param("canvasid")));
If(varCanvasID <> 0, Set(varCanvasData, LookUp(Efforts, ID=varCanvasID)))Component Gallery Items
ColScreenNav

Report
All responses (
Answers (