How to Pass and Access Path Parameters Using the Navigate Node in Neutrinos Studio?

In Neutrinos Studio, I want to pass path parameters while navigating using the navigate node and then access those parameters on the target page.

For example, on the user list page where users are listed in a table, I want to navigate to a single user page on rowclick and pass the user’s ID via path parameters. I know how to set up navigation but need guidance on:

How to access the passed ID on the single user page.

2 Likes

@Muhseena_T @ragesh-a Please Help

2 Likes

You can use the Navigation node to access path parameters:

https://documentation.neutrinos.com/articles/#!flow-designer-guide/navigation-node

3 Likes

To access the passed ID on the single user page in Neutrinos Studio, you can use the “Navigation Data” node right after the onInit event of the page.

  1. In the “Navigation Data” node, choose the “All Parameters” operation type.
  2. This will allow you to retrieve all the parameters passed during navigation.
  3. You can then access the passed ID in the mapped result of this node.
4 Likes