Navigating between pages, flows, and passing parameters between pages
Whenever you create different pages and flows, then you may need to jump from one page to another or from one flow to another. Similarly, you may need to pass parameters between pages.
In this section, we'll look at how to navigate from one page to another and flows.
Navigating between pages
In this section, we'll create a new page to show the user details from the external API, https://jsonplaceholder.typicode.com/users/1. The new page will be opened when we click on a row from the main-external-data page.
After completing the use case, the new page will look like the following screenshot:
The following are the steps to complete the use case:
- Add a new endpoint, https://jsonplaceholder.typicode.com/users/1, to the existing Service Connection, jsonplaceholderTypicodeCom.
- Create a new type and variable. ...