Change page content form a variable in PLC

I now have buttons at the top of my screen in Mappview that allow me to switch between different pages.
One of the buttons (process) should actually check which machine configuration is in my PLC and open the correct page/content based on that.
When I look at the Navigation button, there’s only a pulldown menu with the used content, so only one selection. This must be dependent on the variable in the PLC (string or number).
How can I solve this?

Hi,

here are some steps to solve this

  1. Use the navigation button (or standard button) and don’t assign any content to it.
  2. Use the click event of the button and create a new event binding
  3. Use operand to read the PLC variable to find the configuration
  4. Use conditions to call different actions that navigate to the page you want

Stephan

Thanks for the quick response,

Now it works.