<?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: Having problems with details not showing up with arcade content in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1349323#M8720</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/148663"&gt;@AlixVezina&lt;/a&gt;&amp;nbsp;I am currently running into this problem, and yes I am configuring the pop up for a related table. I got this to work in Enterprise and was trying to recreate the dashboard in AGO, but it is not working in AGO. My arcade popup element is returning a text element. The text element shows in the Map Viewer popup, but not in the dashboard details widget.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Nov 2023 19:16:30 GMT</pubDate>
    <dc:creator>marksm_macomb</dc:creator>
    <dc:date>2023-11-14T19:16:30Z</dc:date>
    <item>
      <title>Having problems with details not showing up with arcade content</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1319216#M8318</link>
      <description>&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I'm having problems displaying the &lt;U&gt;portion&lt;/U&gt; of details widgets that contain Arcade content.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I have simplified the Arcade content down to "Hello, world", and it's still not showing up. As a test, I'm displaying an image and field list in addition to the Arcade content and both of those show up correctly. My Arcade content shows up correctly in the table pop-up in the underlying map.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I saw that there was a Dashboard patch made a couple months ago.&amp;nbsp;Any thoughts?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/detail-elements-not-working-when-popups-were/m-p/1300608" target="_blank"&gt;Solved: Detail elements not working when popups were creat... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Chip&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 16:45:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1319216#M8318</guid>
      <dc:creator>ChipMorgan65</dc:creator>
      <dc:date>2023-08-16T16:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Having problems with details not showing up with arcade content</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1322560#M8370</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/601561"&gt;@ChipMorgan65&lt;/a&gt;&amp;nbsp;Is your arcade popup content configured for a Table layer (rather than a feature layer)?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 15:55:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1322560#M8370</guid>
      <dc:creator>AlixVezina</dc:creator>
      <dc:date>2023-08-25T15:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Having problems with details not showing up with arcade content</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1324135#M8399</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/148663"&gt;@AlixVezina&lt;/a&gt;&amp;nbsp;Thanks for replying.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I actually figured it out after stumbling around for a while (and forgot to come back here and explain my error).&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I was not properly typing the returned data. I had completely replaced the default contents of the Arcade code window and was doing a "raw" return of a variable called html, as in:&lt;/P&gt;&lt;P&gt;return html&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Once I changed the return to the following, it worked great.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;'text'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;text&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;html&lt;/SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;//this property supports html tags &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;Chip&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 30 Aug 2023 21:12:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1324135#M8399</guid>
      <dc:creator>ChipMorgan65</dc:creator>
      <dc:date>2023-08-30T21:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Having problems with details not showing up with arcade content</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1349323#M8720</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/148663"&gt;@AlixVezina&lt;/a&gt;&amp;nbsp;I am currently running into this problem, and yes I am configuring the pop up for a related table. I got this to work in Enterprise and was trying to recreate the dashboard in AGO, but it is not working in AGO. My arcade popup element is returning a text element. The text element shows in the Map Viewer popup, but not in the dashboard details widget.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 19:16:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1349323#M8720</guid>
      <dc:creator>marksm_macomb</dc:creator>
      <dc:date>2023-11-14T19:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Having problems with details not showing up with arcade content</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1350297#M8727</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/670616"&gt;@marksm_macomb&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe this may be a known bug that the team is working to resolve.&amp;nbsp;&lt;A href="https://support.esri.com/en-us/bug/arcade-elements-configured-in-the-popup-of-a-table-is-n-bug-000162393" target="_blank" rel="noopener"&gt;BUG-000162393&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 16:23:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1350297#M8727</guid>
      <dc:creator>AlixVezina</dc:creator>
      <dc:date>2023-11-16T16:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Having problems with details not showing up with arcade content</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1350845#M8737</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 15:21:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/having-problems-with-details-not-showing-up-with/m-p/1350845#M8737</guid>
      <dc:creator>marksm_macomb</dc:creator>
      <dc:date>2023-11-17T15:21:52Z</dc:date>
    </item>
  </channel>
</rss>

