<?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 Custom Widget Message Action in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-message-action/m-p/1654001#M20994</link>
    <description>&lt;P&gt;I've got a custom widget i've developed here which is (in part) allowing the user to target a feature by selecting a name from a dropdown.&amp;nbsp; I have the widget and message part configured such that it is correctly selecting the feature from the data source and in fact &lt;STRONG&gt;the feature does show as selected in the map&lt;/STRONG&gt;.&amp;nbsp; What I'm trying to do though is configure the map to &lt;EM&gt;zoom to the selected feature&lt;/EM&gt;; however even though the action is set to zoom to, it does not do so.&amp;nbsp; Not sure where I'm going wrong...&lt;/P&gt;&lt;P&gt;My widget manifest shows:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;"publishMessages"&lt;/SPAN&gt;: [&lt;BR /&gt;  &lt;SPAN&gt;"DATA_RECORDS_SELECTION_CHANGE"&lt;BR /&gt;&lt;/SPAN&gt;]&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;and the actions tab shows in the widget settings.&amp;nbsp; Not sure where to go from here though to get the map to honor the action.&amp;nbsp; The message is configured as shown:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="slangley_sw_0-1759179327517.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/141111iF1A8C5B13005EA76/image-size/medium?v=v2&amp;amp;px=400" role="button" title="slangley_sw_0-1759179327517.png" alt="slangley_sw_0-1759179327517.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I can provide additional snippets but not sure what is needed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Sep 2025 20:57:43 GMT</pubDate>
    <dc:creator>slangley_sw</dc:creator>
    <dc:date>2025-09-29T20:57:43Z</dc:date>
    <item>
      <title>Custom Widget Message Action</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-message-action/m-p/1654001#M20994</link>
      <description>&lt;P&gt;I've got a custom widget i've developed here which is (in part) allowing the user to target a feature by selecting a name from a dropdown.&amp;nbsp; I have the widget and message part configured such that it is correctly selecting the feature from the data source and in fact &lt;STRONG&gt;the feature does show as selected in the map&lt;/STRONG&gt;.&amp;nbsp; What I'm trying to do though is configure the map to &lt;EM&gt;zoom to the selected feature&lt;/EM&gt;; however even though the action is set to zoom to, it does not do so.&amp;nbsp; Not sure where I'm going wrong...&lt;/P&gt;&lt;P&gt;My widget manifest shows:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;"publishMessages"&lt;/SPAN&gt;: [&lt;BR /&gt;  &lt;SPAN&gt;"DATA_RECORDS_SELECTION_CHANGE"&lt;BR /&gt;&lt;/SPAN&gt;]&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;and the actions tab shows in the widget settings.&amp;nbsp; Not sure where to go from here though to get the map to honor the action.&amp;nbsp; The message is configured as shown:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="slangley_sw_0-1759179327517.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/141111iF1A8C5B13005EA76/image-size/medium?v=v2&amp;amp;px=400" role="button" title="slangley_sw_0-1759179327517.png" alt="slangley_sw_0-1759179327517.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I can provide additional snippets but not sure what is needed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 20:57:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-message-action/m-p/1654001#M20994</guid>
      <dc:creator>slangley_sw</dc:creator>
      <dc:date>2025-09-29T20:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Widget Message Action</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-message-action/m-p/1654021#M20996</link>
      <description>&lt;P&gt;Make sure your Map widget is listening to the same data source your widget is publishing the DATA_RECORDS_SELECTION_CHANGE message from. In Map → Actions, add trigger = record selection → action = zoom to. If it still doesn’t work, call view.goTo(selectedFeature.geometry) in your widget code as a fallback.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 22:46:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-message-action/m-p/1654021#M20996</guid>
      <dc:creator>VenkataKondepati</dc:creator>
      <dc:date>2025-09-29T22:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Widget Message Action</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-message-action/m-p/1654218#M21005</link>
      <description>&lt;P&gt;so strange, confirmed that the data source is the same but yeah I could not get the map to zoom.&amp;nbsp; However adding view.goTo() as a fallback works perfect.&amp;nbsp; Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 15:38:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-message-action/m-p/1654218#M21005</guid>
      <dc:creator>slangley_sw</dc:creator>
      <dc:date>2025-09-30T15:38:21Z</dc:date>
    </item>
  </channel>
</rss>

