Select to view content in your preferred language

Dynamic buttons within lists

501
2
Jump to solution
4 weeks ago
DanielMarshall-Dunkley
New Contributor

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

0 Kudos
1 Solution

Accepted Solutions
ChristopherCounsell
MVP Frequent Contributor

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)

View solution in original post

0 Kudos
2 Replies
ChristopherCounsell
MVP Frequent Contributor

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)

0 Kudos
DanielMarshall-Dunkley
New Contributor

This has worked, thank you!