<?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: CustomContent in Feature component in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1634435#M87390</link>
    <description>&lt;P&gt;I just tried it with the next version (4.34) and it is working. &amp;nbsp;Thanks for getting this fixed!&lt;/P&gt;</description>
    <pubDate>Sun, 20 Jul 2025 17:08:38 GMT</pubDate>
    <dc:creator>Justin_Greco</dc:creator>
    <dc:date>2025-07-20T17:08:38Z</dc:date>
    <item>
      <title>CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1591861#M86620</link>
      <description>&lt;P&gt;Does the Feature component in&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/642472"&gt;@ArcGIS&lt;/a&gt;\map-components not support CustomContent yet?&amp;nbsp; I am working on migrating an app that displays custom content using the Feature widget outside of the map, however, migrating this code to components results in the custom content not appearing.&amp;nbsp; I have tested by displaying it in a popup on the map and I see the custom content there, but just not in the Feature component.&amp;nbsp; Before I dig deeper, I thought I'd see if anyone knows if this is just not supported yet.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2025 18:39:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1591861#M86620</guid>
      <dc:creator>Justin_Greco</dc:creator>
      <dc:date>2025-03-04T18:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1592231#M86625</link>
      <description>&lt;P&gt;Do you have a code sample, codepen, or github of what you are trying to do? Custom Content is defined on the PopupTemplate and Feature displays that info.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2025 15:20:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1592231#M86625</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2025-03-05T15:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1592634#M86634</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/233731"&gt;@Justin_Greco&lt;/a&gt;&amp;nbsp;-&lt;/P&gt;&lt;P&gt;We were able to reproduce what you are experiencing with &lt;A href="https://codepen.io/laurenb14/pen/azbWQde" target="_self"&gt;this example&lt;/A&gt;. We will investigate what's going on and update you soon. Thanks for reporting this!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 05:49:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1592634#M86634</guid>
      <dc:creator>LaurenBoyd</dc:creator>
      <dc:date>2025-03-06T05:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1593102#M86639</link>
      <description>&lt;P&gt;Hi Rene, here is a Codepen based on the sample for the Feature component.&amp;nbsp;&amp;nbsp;&lt;A href="https://codepen.io/justingreco/pen/LEYLRMd" target="_blank" rel="noopener"&gt;https://codepen.io/justingreco/pen/LEYLRMd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I altered the defaultGraphic to show CustomContent displaying TEST 1 and then text content displaying TEST 2. With 4.32 TEST 1 doesn't appear but if you change it to 4.31 TEST 1 and TEST 2 appear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;          const defaultGraphic = {
            popupTemplate: {
              content: [new CustomContent({
                outFields: ["*"],
                creator: () =&amp;gt; {
                  return '&amp;lt;h1&amp;gt;TEST 1&amp;lt;/h1&amp;gt;';
                }
              }), 
                {type: 'text', text:"&amp;lt;h1&amp;gt;TEST 2&amp;lt;/h1&amp;gt;"}]
            }
          };&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;4.32&lt;/H3&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Justin_Greco_0-1741295081136.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/127307iF4F33C7729C470B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Justin_Greco_0-1741295081136.png" alt="Justin_Greco_0-1741295081136.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;4.31&lt;/H3&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Justin_Greco_1-1741295166786.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/127308iEE44A4CEF6AF25D1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Justin_Greco_1-1741295166786.png" alt="Justin_Greco_1-1741295166786.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 21:07:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1593102#M86639</guid>
      <dc:creator>Justin_Greco</dc:creator>
      <dc:date>2025-03-06T21:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1625542#M87273</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/400217"&gt;@LaurenBoyd&lt;/a&gt;&amp;nbsp;I just tested this issue with 4.33 and it is not displaying the custom content in the Feature widget.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Jun 2025 19:08:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1625542#M87273</guid>
      <dc:creator>Justin_Greco</dc:creator>
      <dc:date>2025-06-21T19:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1632228#M87364</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/233731"&gt;@Justin_Greco&lt;/a&gt;&amp;nbsp;-&lt;/P&gt;&lt;P&gt;Unfortunately, we weren't able to address this issue with the 4.33 release. We are still actively investigating a fix for this issue and hope to have a fix in 4.34. I'll be sure to update this post once we are able to address this.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 21:59:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1632228#M87364</guid>
      <dc:creator>LaurenBoyd</dc:creator>
      <dc:date>2025-07-10T21:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1634435#M87390</link>
      <description>&lt;P&gt;I just tried it with the next version (4.34) and it is working. &amp;nbsp;Thanks for getting this fixed!&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jul 2025 17:08:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1634435#M87390</guid>
      <dc:creator>Justin_Greco</dc:creator>
      <dc:date>2025-07-20T17:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: CustomContent in Feature component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1635613#M87400</link>
      <description>&lt;P&gt;Glad this is working for you in the next version! We have refactored the Feature component to&lt;SPAN&gt;&amp;nbsp;no longer wrap widget code in it's implementation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 17:18:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/customcontent-in-feature-component/m-p/1635613#M87400</guid>
      <dc:creator>LaurenBoyd</dc:creator>
      <dc:date>2025-07-23T17:18:47Z</dc:date>
    </item>
  </channel>
</rss>

