<?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: Adding a button to a popup in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176560#M22225</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;&lt;/P&gt;&lt;P&gt;I am trying to edit the Popup in the&amp;nbsp;&lt;STRONG&gt;resetInfoWindow&amp;nbsp;&lt;/STRONG&gt;and from what I have figured out I cannot add a button here. Is there a way to add a custom action here:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;resetInfoWindow: function(isNewMap) {
          if (isNewMap) {

          this._mapInfoWindow = this.map.infoWindow;
          if(this._mapMobileInfoWindow){
            this._mapMobileInfoWindow.destroy();
            // working around for bug of destroying _mapMobileInfoWindow is not completely.
            query("div.esriMobileInfoView.esriMobilePopupInfoView").forEach(function(node){
              html.destroy(node);
            });
            query("div.esriMobileNavigationBar").forEach(function(node){
              html.destroy(node);
            });
            }
          this._mapMobileInfoWindow =
          new Popup(null, html.create("div", null, null, this.map.root));
          this.isMobileInfoWindow = false;
        }
        if (jimuUtils.inMobileSize() &amp;amp;&amp;amp; !this.isMobileInfoWindow) {
          this.map.infoWindow.hide();
          this.map.setInfoWindow(this._mapMobileInfoWindow);
          this.isMobileInfoWindow = true;
        } else if (!jimuUtils.inMobileSize() &amp;amp;&amp;amp; this.isMobileInfoWindow) {
          this.map.infoWindow.hide();
          this.map.setInfoWindow(this._mapInfoWindow);
          this.isMobileInfoWindow = false;
        }
      }&lt;/LI-CODE&gt;&lt;P&gt;I already have all of the correct attributes for the Popup in &lt;STRONG&gt;this.map.root&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;this._mapMobileInfoWindow =
new Popup(null, html.create("div", null, null, this.map.root));&lt;/LI-CODE&gt;&lt;P&gt;and if there's a way to add a custom action button here, it'd be great.&lt;/P&gt;</description>
    <pubDate>Mon, 23 May 2022 18:50:03 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2022-05-23T18:50:03Z</dc:date>
    <item>
      <title>Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176465#M22221</link>
      <description>&lt;P&gt;What is the best way to add a button to the popup? I need a button that calls a function in the popup.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NovicaJ_0-1653321647909.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/41956i72500E8FC43484B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NovicaJ_0-1653321647909.png" alt="NovicaJ_0-1653321647909.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Something similar to the "Zoom To" button or the same.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 16:02:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176465#M22221</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-05-23T16:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176480#M22222</link>
      <description>&lt;P&gt;Per the Esri example of a 'Popup with Edit Action' (&lt;A title="Popup Editaction" href="https://developers.arcgis.com/javascript/latest/sample-code/popup-editaction/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/javascript/latest/sample-code/popup-editaction/&lt;/A&gt;&amp;nbsp;), you should start by creating the object that will show up on the popup:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const editThisAction = {
    title: "Edit",
    id: "edit-this",
    className: "esri-icon-edit"
};&lt;/LI-CODE&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;Then add it to the 'actions' setting in your featureLayer template:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const myTemplate = {
    title: "My Template: &amp;lt;font style='color: #A9C332;'&amp;gt;{Field1}&amp;lt;/font&amp;gt;",
    fieldInfos: [
        { fieldName: "Field1", label: "Field1" },
        { fieldName: "Field2", label: "Field2" }
    ],
    outFields: ["*"],
    actions: [editThisAction]
};&lt;/LI-CODE&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;Connect the template to your featureLayer:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const theLayer = new FeatureLayer({
    url: theURL,
    outFields: ["*"],
    popupTemplate: theTemplate,
    id: "theLayer",
    title: "The Layer"
});&lt;/LI-CODE&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;And finally, make sure to handle the 'trigger-action' event:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;view.when(function () {
    // Event handler that fires each time an action is clicked
    view.popup.on("trigger-action", function (event) {
        if (event.action.id === "edit-this") {
            // Attach to a function that does what you want
            //editThis();
        }   
    }     
});&lt;/LI-CODE&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;The only problem with the Esri sample is that they have gone to a Calcite rendition of the Editor, which makes it impossible now to figure out the Dom attachment point on the Editor widget.&amp;nbsp; I created a ticket with Esri support but they seem to have moved on to more important things.&amp;nbsp; The functionality to create an extra button and perform an action with it's click on the Popup works well though. If you want to use the functionality to add a button to the Editor you need to use version 4.22 or earlier.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 16:31:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176480#M22222</guid>
      <dc:creator>JeffreyWilkerson</dc:creator>
      <dc:date>2022-05-23T16:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176487#M22223</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous User&amp;nbsp;-&lt;/P&gt;&lt;P data-unlink="true"&gt;It looks like you may be using 3.x? If so, you can add a custom action on the Popup using the &lt;A href="https://developers.arcgis.com/javascript/3/jsapi/popup-amd.html#addactions" target="_self"&gt;addActions method&lt;/A&gt;. Check out this example:&amp;nbsp;&lt;A href="https://codepen.io/laurenb14/pen/qBxPWmK?editors=1000" target="_blank"&gt;https://codepen.io/laurenb14/pen/qBxPWmK?editors=1000&lt;/A&gt;&lt;/P&gt;&lt;P data-unlink="true"&gt;If using 4.x, you can also add custom actions to the popup. This sample shows how to add your own actions:&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/popup-actions/" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/sample-code/popup-actions/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P data-unlink="true"&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 16:38:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176487#M22223</guid>
      <dc:creator>LaurenBoyd</dc:creator>
      <dc:date>2022-05-23T16:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176544#M22224</link>
      <description>&lt;P&gt;The thing is, my current popup is generated out of the box. I have not edited it what so ever and is shows most of the stuff I need.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's what the code looks like&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;this._mapMobileInfoWindow =
new Popup(null, html.create("div", null, null, this.map.root));&lt;/LI-CODE&gt;&lt;P&gt;and it generates this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NovicaJ_0-1653329779499.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/41970iA78EF467D3C0E481/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NovicaJ_0-1653329779499.png" alt="NovicaJ_0-1653329779499.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there a way to add a button without editing the title or making other changes?&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 18:17:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176544#M22224</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-05-23T18:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176560#M22225</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;&lt;/P&gt;&lt;P&gt;I am trying to edit the Popup in the&amp;nbsp;&lt;STRONG&gt;resetInfoWindow&amp;nbsp;&lt;/STRONG&gt;and from what I have figured out I cannot add a button here. Is there a way to add a custom action here:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;resetInfoWindow: function(isNewMap) {
          if (isNewMap) {

          this._mapInfoWindow = this.map.infoWindow;
          if(this._mapMobileInfoWindow){
            this._mapMobileInfoWindow.destroy();
            // working around for bug of destroying _mapMobileInfoWindow is not completely.
            query("div.esriMobileInfoView.esriMobilePopupInfoView").forEach(function(node){
              html.destroy(node);
            });
            query("div.esriMobileNavigationBar").forEach(function(node){
              html.destroy(node);
            });
            }
          this._mapMobileInfoWindow =
          new Popup(null, html.create("div", null, null, this.map.root));
          this.isMobileInfoWindow = false;
        }
        if (jimuUtils.inMobileSize() &amp;amp;&amp;amp; !this.isMobileInfoWindow) {
          this.map.infoWindow.hide();
          this.map.setInfoWindow(this._mapMobileInfoWindow);
          this.isMobileInfoWindow = true;
        } else if (!jimuUtils.inMobileSize() &amp;amp;&amp;amp; this.isMobileInfoWindow) {
          this.map.infoWindow.hide();
          this.map.setInfoWindow(this._mapInfoWindow);
          this.isMobileInfoWindow = false;
        }
      }&lt;/LI-CODE&gt;&lt;P&gt;I already have all of the correct attributes for the Popup in &lt;STRONG&gt;this.map.root&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;this._mapMobileInfoWindow =
new Popup(null, html.create("div", null, null, this.map.root));&lt;/LI-CODE&gt;&lt;P&gt;and if there's a way to add a custom action button here, it'd be great.&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 18:50:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176560#M22225</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-05-23T18:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176570#M22226</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;&lt;/P&gt;&lt;P&gt;My post above is not a solution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 18:58:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176570#M22226</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-05-23T18:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176574#M22227</link>
      <description>&lt;P&gt;@Anonymous User&amp;nbsp; You need to post questions that are specific to WAB in the WAB space (you are currently posting to the Javascript API community)&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-web-appbuilder-questions/bd-p/arcgis-web-appbuilder-questions" target="_blank"&gt;https://community.esri.com/t5/arcgis-web-appbuilder-questions/bd-p/arcgis-web-appbuilder-questions&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you search that community in in GeoNet then you would find these two posts that answer your question.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Read the whole threads. One starts out thanking about a very old version of WAB but then get more current.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-web-appbuilder-questions/add-button-to-info-window-pop-up/m-p/120461" target="_blank"&gt;https://community.esri.com/t5/arcgis-web-appbuilder-questions/add-button-to-info-window-pop-up/m-p/120461&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/custom-link-in-local-data-popup-click-on-the-map/m-p/791733#M4217" target="_blank"&gt;https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/custom-link-in-local-data-popup-click-on-the-map/m-p/791733#M4217&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 19:15:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176574#M22227</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2022-05-23T19:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176578#M22228</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1104"&gt;@RobertScheitlin__GISP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies, I'll ask in the correct space.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 19:22:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1176578#M22228</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-05-23T19:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1302458#M23077</link>
      <description>&lt;P&gt;I used to be able to add a button to the pop code (see below and attachments). It worked until after&amp;nbsp;ArcGIS API for JavaScript (legacy) 3.36. Anything after that the html tags do not work for buttons, inputs, etc. Is there a different way to do this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt; countyTemplate = new PopupTemplate ({
                    title: "Counties",
                    description: "&amp;lt;button type='button'onClick=javascript&amp;amp;colon;countyAssessor('{jurisdicti}')&amp;gt;Click for {jurisdicti} County Assessor web page&amp;lt;/button&amp;gt;"
                });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 14:39:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1302458#M23077</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2023-06-23T14:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1302510#M23078</link>
      <description>&lt;P&gt;Per this page (&lt;A title="Supported HTML AGOL" href="https://doc.arcgis.com/en/arcgis-online/reference/supported-html.htm" target="_blank" rel="noopener"&gt;https://doc.arcgis.com/en/arcgis-online/reference/supported-html.htm&lt;/A&gt;&amp;nbsp;) which is for ArcGIS Online, I wonder if the 'button' tag is no longer accepted as an HTML Element. I was able to get an IMG tag to work by dropping it into some sample code, but not the 'onclick' action yet:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;html lang="en"&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;meta charset="utf-8" /&amp;gt;
    &amp;lt;meta
      name="viewport"
      content="initial-scale=1,maximum-scale=1,user-scalable=no"
    /&amp;gt;
    &amp;lt;title&amp;gt;
      Intro to PopupTemplate | Sample | ArcGIS Maps SDK for JavaScript 4.27
    &amp;lt;/title&amp;gt;

    &amp;lt;style&amp;gt;
      html,
      body,
      #viewDiv {
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
      }
    &amp;lt;/style&amp;gt;

    &amp;lt;link
      rel="stylesheet"
      href="https://js.arcgis.com/4.27/esri/themes/light/main.css"
    /&amp;gt;
    &amp;lt;script src="https://js.arcgis.com/4.27/"&amp;gt;&amp;lt;/script&amp;gt;

    &amp;lt;script&amp;gt;
      require([
        "esri/Map",
        "esri/layers/FeatureLayer",
        "esri/views/MapView",
        "esri/widgets/Legend"
      ], (Map, FeatureLayer, MapView, Legend) =&amp;gt; {
        // Create the map
        const map = new Map({
          basemap: "gray-vector"
        });

        // Create the MapView
        const view = new MapView({
          container: "viewDiv",
          map: map,
          center: [-73.95, 40.702],
          zoom: 10
        });

        view.ui.add(new Legend({ view: view }), "bottom-left");

        /*************************************************************
         * The PopupTemplate content is the text that appears inside the
         * popup. {fieldName} can be used to reference the value of an
         * attribute of the selected feature. HTML elements can be used
         * to provide structure and styles within the content. The
         * fieldInfos property is an array of objects (each object representing
         * a field) that is use to format number fields and customize field
         * aliases in the popup and legend.
         **************************************************************/

        const template = {
          // autocasts as new PopupTemplate()
          title: "{NAME} in {COUNTY}",
          content: "&amp;lt;img src='https://images.freeimages.com/fic/images/icons/694/longhorn_r2/256/forward_button.png' height='50px;' onlick='javascript&amp;amp;colon;countyAssessor(''{COUNTY}'')&amp;gt;Click for {COUNTY} County Assessor web page'&amp;gt;"
            
          
        };

        // Reference the popupTemplate instance in the
        // popupTemplate property of FeatureLayer
        const featureLayer = new FeatureLayer({
          url: "https://services.arcgis.com/P3ePLMYs2RVChkJx/arcgis/rest/services/ACS_Marital_Status_Boundaries/FeatureServer/2",
          popupTemplate: template
        });
        map.add(featureLayer);
      });
    &amp;lt;/script&amp;gt;
  &amp;lt;/head&amp;gt;

  &amp;lt;body&amp;gt;
    &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wonder if you can just use the Popup 'Actions' and change the icon to be what you want it to be:&lt;/P&gt;&lt;P&gt;&lt;A title="Popup Actions" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#actions" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#actions&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 16:13:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1302510#M23078</guid>
      <dc:creator>JeffreyWilkerson</dc:creator>
      <dc:date>2023-06-23T16:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a button to a popup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1303444#M23090</link>
      <description>&lt;P&gt;Thanks for the information! I did try the Popup Actions. I need to work with it a bit more to get it to work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 16:17:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/adding-a-button-to-a-popup/m-p/1303444#M23090</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2023-06-27T16:17:49Z</dc:date>
    </item>
  </channel>
</rss>

