I have a Perspective project that uses a parent-child project structure. The child project contains all the actual “live” views (production), and the parent project provides shared elements like nav, styling, footer, menu etc.
Inside the footer view, there’s an alarm status table meant to display only the alarms related to whichever view the user is currently looking at. If open “HVAC001”, the footer should only show alarms from “HVAC001”.
It is set up in the page config and made as an global footer shared across all views. I have tried various ways to make the logic work. I have tried filtering by adding a currentView parameter to the session. I guess I don’t know if my logic is wrong or my execution is wrong, anybody has any approaches I can try? I would like it to be filtering through primaryView parameter if it works.