<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: hyperlinks are not working in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/hyperlinks-are-not-working/m-p/1576117#M16937</link>
    <description>&lt;P&gt;I have answered your previous post but I'll post the solution here just incase you miss it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;===================================================================&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/562438" target="_blank" rel="noopener"&gt;@L77&lt;/A&gt;&amp;nbsp;it's the "{" that are the problem in URL that are the problem. You are doing everything right, it's just the way it parses that expression that's causing the issue.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As a test I used the URL - "&lt;A href="https://www.google.com/%22" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.google.com/"&lt;/A&gt;&amp;nbsp;it works fine.&amp;nbsp;&lt;BR /&gt;In fact, it even recognizes the attribute value as a URL in the pop-up without any configuration&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gis_KIWI4_0-1736998373592.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/123447iBBC7AD3734A213B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gis_KIWI4_0-1736998373592.png" alt="gis_KIWI4_0-1736998373592.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What I would suggest is that you encode the special characters.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Arcade Expression

// 1. Original URL with special characters
var fullUrl = "https://www.cowlitzinfo.net/WLAudPublicWorks/Search.aspx?dbid=0&amp;amp;repo=CCIMAGES&amp;amp;searchcommand={[AUD - Recorded Documents]:[Rec Doc AFN]=3102328}";

// 2. Manually replace special characters with percent-encoded values
var encodedUrl = Replace(fullUrl, " ", "%20");
encodedUrl = Replace(encodedUrl, "{", "%7B");
encodedUrl = Replace(encodedUrl, "}", "%7D");
encodedUrl = Replace(encodedUrl, "[", "%5B");
encodedUrl = Replace(encodedUrl, "]", "%5D");
encodedUrl = Replace(encodedUrl, "=", "%3D");

// 3. Return the fully encoded URL
return encodedUrl;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;fullURL can be set to whatever attribute has the URL in it.&amp;nbsp;&lt;BR /&gt;I can't test it but it looks like it might work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gis_KIWI4_2-1736998483767.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/123449i75216ED0699F77A1/image-size/large?v=v2&amp;amp;px=999" role="button" title="gis_KIWI4_2-1736998483767.png" alt="gis_KIWI4_2-1736998483767.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jan 2025 03:35:08 GMT</pubDate>
    <dc:creator>gis_KIWI4</dc:creator>
    <dc:date>2025-01-16T03:35:08Z</dc:date>
    <item>
      <title>hyperlinks are not working</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/hyperlinks-are-not-working/m-p/1576047#M16936</link>
      <description>&lt;P&gt;I am building an experience builder app to replace my web app builder app and I can't get the document hyperlinks to work in the pop up window like they did in experience builder.&lt;/P&gt;&lt;P&gt;I have hyperlinks to my monuments, short plats, large lots, subdivisions, and road documents that are all essential to our business to be linked in the pop up window.&lt;/P&gt;&lt;P&gt;I tried copying over the code I had in web app builder but couldn't get it to work for any of the assets.&lt;/P&gt;&lt;P&gt;Here is a link to a post I made on the subject a few months ago but I didn't get any suggestions from anyone on how to get it to work.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-online-questions/map-viewer-need-a-hyperlink-in-pop-up-window-to/m-p/1560897#M62501" target="_blank" rel="noopener"&gt;https://community.esri.com/t5/arcgis-online-questions/map-viewer-need-a-hyperlink-in-pop-up-window-to/m-p/1560897#M62501&lt;/A&gt;&lt;/P&gt;&lt;P&gt;With web app builder being phased out at the end of the year I am very concerned about getting this up and running so our staff can learn to use the app.&lt;/P&gt;&lt;P&gt;I attached documents with screenshots from how the data was configured in Map Viewer Classic and web app buider for each dataset.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 23:10:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/hyperlinks-are-not-working/m-p/1576047#M16936</guid>
      <dc:creator>L77</dc:creator>
      <dc:date>2025-01-15T23:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: hyperlinks are not working</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/hyperlinks-are-not-working/m-p/1576117#M16937</link>
      <description>&lt;P&gt;I have answered your previous post but I'll post the solution here just incase you miss it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;===================================================================&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/562438" target="_blank" rel="noopener"&gt;@L77&lt;/A&gt;&amp;nbsp;it's the "{" that are the problem in URL that are the problem. You are doing everything right, it's just the way it parses that expression that's causing the issue.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As a test I used the URL - "&lt;A href="https://www.google.com/%22" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.google.com/"&lt;/A&gt;&amp;nbsp;it works fine.&amp;nbsp;&lt;BR /&gt;In fact, it even recognizes the attribute value as a URL in the pop-up without any configuration&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gis_KIWI4_0-1736998373592.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/123447iBBC7AD3734A213B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gis_KIWI4_0-1736998373592.png" alt="gis_KIWI4_0-1736998373592.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What I would suggest is that you encode the special characters.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Arcade Expression

// 1. Original URL with special characters
var fullUrl = "https://www.cowlitzinfo.net/WLAudPublicWorks/Search.aspx?dbid=0&amp;amp;repo=CCIMAGES&amp;amp;searchcommand={[AUD - Recorded Documents]:[Rec Doc AFN]=3102328}";

// 2. Manually replace special characters with percent-encoded values
var encodedUrl = Replace(fullUrl, " ", "%20");
encodedUrl = Replace(encodedUrl, "{", "%7B");
encodedUrl = Replace(encodedUrl, "}", "%7D");
encodedUrl = Replace(encodedUrl, "[", "%5B");
encodedUrl = Replace(encodedUrl, "]", "%5D");
encodedUrl = Replace(encodedUrl, "=", "%3D");

// 3. Return the fully encoded URL
return encodedUrl;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;fullURL can be set to whatever attribute has the URL in it.&amp;nbsp;&lt;BR /&gt;I can't test it but it looks like it might work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gis_KIWI4_2-1736998483767.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/123449i75216ED0699F77A1/image-size/large?v=v2&amp;amp;px=999" role="button" title="gis_KIWI4_2-1736998483767.png" alt="gis_KIWI4_2-1736998483767.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 03:35:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/hyperlinks-are-not-working/m-p/1576117#M16937</guid>
      <dc:creator>gis_KIWI4</dc:creator>
      <dc:date>2025-01-16T03:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: hyperlinks are not working</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/hyperlinks-are-not-working/m-p/1576410#M16946</link>
      <description>&lt;P&gt;For hyperlinks I personally set up a IIS site and have agol/portal reference the IIS site to display the pdfs.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 14:49:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/hyperlinks-are-not-working/m-p/1576410#M16946</guid>
      <dc:creator>Laura</dc:creator>
      <dc:date>2025-01-16T14:49:44Z</dc:date>
    </item>
  </channel>
</rss>

