Hello,
I currently have a list widget within Experience Builder that I am filtering using a filter widget. Within this list I have, for now, 3 entries, dynamic text linking to a location based dataset, and a button which I would like to navigate to other pages.
Is it possible to make the buttons on each of the list items take me to a different page? For example, the item that says Haiti taking me to the Haiti page, and the item saying Paraguay taking me to the Paraguay page.
Thanks
Solved! Go to Solution.
Hi,
Yes it's possible but you'll need to construct the URL. You can hardcode it into a field or dynamically create it using arcade.
See 'go to a page' in the URL parameters here:
https://doc.arcgis.com/en/experience-builder/latest/build-apps/url-parameters.htm#ESRI_SECTION1_C99B...
https://experience.arcgis.com/experience/<AppId>/page/{xxxHome}/
the {xxxHome} would be the page name value from the field (Haiti, Parguay, etc)
Hi,
Yes it's possible but you'll need to construct the URL. You can hardcode it into a field or dynamically create it using arcade.
See 'go to a page' in the URL parameters here:
https://doc.arcgis.com/en/experience-builder/latest/build-apps/url-parameters.htm#ESRI_SECTION1_C99B...
https://experience.arcgis.com/experience/<AppId>/page/{xxxHome}/
the {xxxHome} would be the page name value from the field (Haiti, Parguay, etc)
This has worked, thank you!