How to navigate from datagrid to detail item?

So i have this issue

i have one page is home ti display datagrid data, from this when i click a row i want navigate to detail page {{ /detail/id }} but when i clicked i not show my display

i have a page which is where the data grid is displayed, from this page when i click on a row i want to navigate to the detail page {{ /detail/id }} but when i click i don’t show my screen

Hi.

First on the details page setup the page to use PAGE PARAMETERS

Then the navigation action, set it to PAGE not PATH

Then when you are navigating you navigate to the details page with the PAGE PARAMETER set as the id

And then on the page, you fetch the data and display it.

That’s it. So PAGE PARAMETER is what you need to setup on the details page and navigate to the PAGE. Not the path. Since it is just “id“ you are using as your variable in the path.

2 Likes