<?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: Display Attachments in Pop-up - 4.12? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658110#M61394</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry to ask this - I'm very new to JS. Any chance you could give me a piece sample code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Oct 2019 20:21:21 GMT</pubDate>
    <dc:creator>ZacStanley3</dc:creator>
    <dc:date>2019-10-10T20:21:21Z</dc:date>
    <item>
      <title>Display Attachments in Pop-up - 4.12?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658106#M61390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All-&lt;/P&gt;&lt;P&gt;I'm trying to embed a couple of attachments in my pop-up. I'm having trouble finding code samples to do this in 4.12. Anyone have any resources that can help me accomplish this?&lt;/P&gt;&lt;P&gt;My code thus far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;meta charset="utf-8"&amp;gt;&lt;BR /&gt; &amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;ArcGIS JavaScript Tutorials: Create a Starter App&amp;lt;/title&amp;gt;&lt;BR /&gt; &amp;lt;style&amp;gt;&lt;BR /&gt; html,&lt;BR /&gt; body,&lt;BR /&gt; #viewDiv {&lt;BR /&gt; padding: 0;&lt;BR /&gt; margin: 0;&lt;BR /&gt; height: 100%;&lt;BR /&gt; width: 100%;&lt;BR /&gt; }&lt;BR /&gt; &amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;link rel="stylesheet" href="https://js.arcgis.com/4.12/esri/css/main.css"&amp;gt;&lt;BR /&gt; &amp;lt;script src="https://js.arcgis.com/4.12/"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;BR /&gt; require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; "esri/layers/FeatureLayer",&lt;BR /&gt; "esri/widgets/Expand",&lt;BR /&gt; "esri/widgets/BasemapGallery",&lt;BR /&gt; "esri/widgets/Home",&lt;BR /&gt; "esri/PopupTemplate"&lt;BR /&gt; ], function (Map, MapView, FeatureLayer, Expand, BasemapGallery, Home) {&lt;/P&gt;&lt;P&gt;var map = new Map({&lt;BR /&gt; basemap: "topo-vector"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var view = new MapView({&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; map: map,&lt;BR /&gt; center: [-122.6226858, 37.9449276],&lt;BR /&gt; zoom: 12,&lt;BR /&gt; popup: {&lt;BR /&gt; dockEnabled: true,&lt;BR /&gt; dockOptions: {&lt;BR /&gt; // Disables the dock button from the popup&lt;BR /&gt; buttonEnabled: false,&lt;BR /&gt; // Ignore the default sizes that trigger responsive docking&lt;BR /&gt; breakpoint: false,&lt;BR /&gt; position: "bottom-right"&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; container: "viewDiv"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // Define a simple renderer and an image symbol&lt;BR /&gt; var trailheadsRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "picture-marker",&lt;BR /&gt; url: "http://static.arcgis.com/images/Symbols/NPS/npsPictograph_0231b.png",&lt;BR /&gt; width: "18px",&lt;BR /&gt; height: "18px"&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;// Add labels&lt;BR /&gt; var trailheadsLabels = {&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "text",&lt;BR /&gt; color: "#000000",&lt;BR /&gt; haloColor: "#FFFFFF",&lt;BR /&gt; haloSize: "2px",&lt;BR /&gt; font: {&lt;BR /&gt; size: "10px",&lt;BR /&gt; family: "Arial",&lt;BR /&gt; style: "normal",&lt;BR /&gt; weight: "bold"&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; labelPlacement: "above-center",&lt;BR /&gt; labelExpressionInfo: {&lt;BR /&gt; expression: "$feature.NAME"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;// Add minor trailheads with renderer&lt;/P&gt;&lt;P&gt;// Define a simple renderer and an image symbol&lt;BR /&gt; var minortrailheadsRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "picture-marker",&lt;BR /&gt; url: "http://static.arcgis.com/images/Symbols/NPS/npsPictograph_0231b.png",&lt;BR /&gt; width: "9px",&lt;BR /&gt; height: "9px"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var minortrailheads = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/OneTam_MinorTrailheads_pt/FeatureServer/1",&lt;BR /&gt; renderer: minortrailheadsRenderer&lt;BR /&gt; });&lt;BR /&gt; // Add the layer&lt;BR /&gt; map.add(minortrailheads);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // Add all trails no use type symbology&lt;BR /&gt; var TrailsRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "simple-line",&lt;BR /&gt; style: "solid",&lt;BR /&gt; color: "#2F5279",&lt;BR /&gt; width: "0.7px"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;const labelClass = { &lt;BR /&gt; symbol: {&lt;BR /&gt; type: "text", &lt;BR /&gt; color: "black",&lt;BR /&gt; haloColor: "#dce3d0",&lt;BR /&gt; haloSize: 3,&lt;BR /&gt; font: { &lt;BR /&gt; family: "Verlag",&lt;BR /&gt; size: 7,&lt;BR /&gt; style: "italic",&lt;BR /&gt; weight: "normal"&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; labelPlacement: "center-along",&lt;BR /&gt; labelExpressionInfo: {&lt;BR /&gt; expression: "$feature.TRLNAME"&lt;BR /&gt; }&lt;BR /&gt;};&lt;BR /&gt; &lt;BR /&gt; var Trails = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/ONETAM_TRANS_Trails_ln/FeatureServer/2",&lt;BR /&gt; renderer: TrailsRenderer&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;Trails.minScale = 150000;&lt;BR /&gt; Trails.maxScale = 37000;&lt;BR /&gt; map.add(Trails, 0);&lt;BR /&gt; &lt;BR /&gt; // Add featured hikes with special symbology&lt;BR /&gt; var FeaturedHikesRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "simple-line",&lt;BR /&gt; style: "solid",&lt;BR /&gt; color: "#f6c65b",&lt;BR /&gt; width: "6px"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var FeaturedHikes = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/MtTamFeaturedTrails/FeatureServer/6",&lt;BR /&gt; renderer: FeaturedHikesRenderer,&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;FeaturedHikes.minScale = 37000;&lt;BR /&gt; map.add(FeaturedHikes, 0);&lt;/P&gt;&lt;P&gt;// Add hiking only trails&lt;BR /&gt; var hikeTrailsRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "simple-line",&lt;BR /&gt; style: "short-dot",&lt;BR /&gt; color: "#2F5279",&lt;BR /&gt; width: "1px"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var hikeTrails = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/ONETAM_TRANS_Trails_ln/FeatureServer/2",&lt;BR /&gt; renderer: hikeTrailsRenderer,&lt;BR /&gt; labelingInfo: [labelClass],&lt;BR /&gt; definitionExpression: "TRLUSE = 'Hiker/Pedestrian'"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;hikeTrails.minScale = 37000;&lt;BR /&gt; map.add(hikeTrails, 0);&lt;/P&gt;&lt;P&gt;// Add hiking/biking trails&lt;BR /&gt; var bikehikeTrailsRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "simple-line",&lt;BR /&gt; style: "long-dash",&lt;BR /&gt; color: "#2F5279",&lt;BR /&gt; width: "1px"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var bikehikeTrails = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/ONETAM_TRANS_Trails_ln/FeatureServer/2",&lt;BR /&gt; renderer: bikehikeTrailsRenderer,&lt;BR /&gt; labelingInfo: [labelClass],&lt;BR /&gt; definitionExpression: "TRLUSE = 'Hiker/Pedestrian | Bicycle'"&lt;BR /&gt; });&lt;BR /&gt; bikehikeTrails.minScale = 37000;&lt;BR /&gt; map.add(bikehikeTrails, 0);&lt;/P&gt;&lt;P&gt;var horsehikeTrailsRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "simple-line",&lt;BR /&gt; style: "dash-dot",&lt;BR /&gt; color: "#2F5279",&lt;BR /&gt; width: ".1px"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var horsehikeTrails = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/ONETAM_TRANS_Trails_ln/FeatureServer/2",&lt;BR /&gt; renderer: horsehikeTrailsRenderer,&lt;BR /&gt; labelingInfo: [labelClass],&lt;BR /&gt; definitionExpression: "TRLUSE = 'Hiker/Pedestrian | Pack and Saddle'"&lt;BR /&gt; });&lt;BR /&gt; horsehikeTrails.minScale = 37000;&lt;BR /&gt; map.add(horsehikeTrails, 0);&lt;/P&gt;&lt;P&gt;var muTrailsRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "simple-line",&lt;BR /&gt; style: "short-dash",&lt;BR /&gt; color: "#2F5279",&lt;BR /&gt; width: "1px"&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var muTrails = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/ONETAM_TRANS_Trails_ln/FeatureServer/2",&lt;BR /&gt; renderer: muTrailsRenderer,&lt;BR /&gt; labelingInfo: [labelClass],&lt;BR /&gt; definitionExpression: "TRLUSE = 'Hiker/Pedestrian | Pack and Saddle | Bicycle'"&lt;BR /&gt; });&lt;BR /&gt; muTrails.minScale = 37000;&lt;BR /&gt; map.add(muTrails, 0);&lt;/P&gt;&lt;P&gt;// Define a simple value renderer and symbols&lt;BR /&gt; var onetamareaRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "simple-fill",&lt;BR /&gt; color: "#D5E5C8",&lt;BR /&gt; outline: {&lt;BR /&gt; width: 2,&lt;BR /&gt; color: "#4E663A"&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var onetamLayer = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/One_Tam_Area_of_Interest/FeatureServer/0",&lt;BR /&gt; renderer: onetamareaRenderer,&lt;BR /&gt; opacity: 0.5&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;map.add(onetamLayer, 0)&lt;/P&gt;&lt;P&gt;// Define a popup for Trailheads&lt;BR /&gt; var popupTrailheads = {&lt;BR /&gt; "title": "Featured Hike",&lt;BR /&gt; "content": "&amp;lt;b&amp;gt;West Peak Loop&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;{HikeDesc}{HikeDesc2}{HikeDesc3}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt; {Difficulty}&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Length: &amp;lt;/b&amp;gt;{Length}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Amenities: &amp;lt;/b&amp;gt;{Amenities}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;b&amp;gt;Get the Latest:&amp;lt;/b&amp;gt; {TheLatest2}"&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;// Create the layer and set the popup&lt;BR /&gt; var trailheads = new FeatureLayer({&lt;BR /&gt; url: "https://services9.arcgis.com/D49vnq4lqWmKCLj0/arcgis/rest/services/One_Tam_Featured_Hikes_Trailheads/FeatureServer/0",&lt;BR /&gt; outFields: ["HikeDesc", "HikeDesc2", "HikeDesc3", "Difficulty", "Length", "Amenities", "TheLatest2"],&lt;BR /&gt; renderer: trailheadsRenderer,&lt;BR /&gt; labelingInfo: [trailheadsLabels],&lt;BR /&gt; popupTemplate: popupTrailheads&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// Add the layer&lt;BR /&gt; map.add(trailheads);&lt;/P&gt;&lt;P&gt;//Click on feature zooms to it&lt;BR /&gt; view.popup.watch("selectedFeature", function (graphic) {&lt;BR /&gt; if (graphic &amp;amp;&amp;amp; graphic.layer === trailheads) {&lt;BR /&gt; view.popup.triggerAction(0);&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// Create a BasemapGallery widget instance and set&lt;BR /&gt; // its container to a div element&lt;/P&gt;&lt;P&gt;var basemapGallery = new BasemapGallery({&lt;BR /&gt; view: view,&lt;BR /&gt; container: document.createElement("div")&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// Create an Expand instance and set the content&lt;BR /&gt; // property to the DOM node of the basemap gallery widget&lt;BR /&gt; // Use an Esri icon font to represent the content inside&lt;BR /&gt; // of the Expand widget&lt;/P&gt;&lt;P&gt;var bgExpand = new Expand({&lt;BR /&gt; view: view,&lt;BR /&gt; content: basemapGallery&lt;BR /&gt; });&lt;BR /&gt; // close the expand whenever a basemap is selected&lt;BR /&gt; basemapGallery.watch("activeBasemap", function () {&lt;BR /&gt; var mobileSize =&lt;BR /&gt; view.heightBreakpoint === "xsmall" ||&lt;BR /&gt; view.widthBreakpoint === "xsmall";&lt;/P&gt;&lt;P&gt;if (mobileSize) {&lt;BR /&gt; bgExpand.collapse();&lt;BR /&gt; }&lt;BR /&gt; });&lt;BR /&gt; // Add the expand instance to the ui&lt;/P&gt;&lt;P&gt;view.ui.add(bgExpand, "top-right");&lt;BR /&gt; var homeBtn = new Home({&lt;BR /&gt; view: view&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// Add the home button to the top left corner of the view&lt;BR /&gt; view.ui.add(homeBtn, "top-left");&lt;/P&gt;&lt;P&gt;});&lt;BR /&gt; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 15:59:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658106#M61390</guid>
      <dc:creator>ZacStanley3</dc:creator>
      <dc:date>2019-10-10T15:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Display Attachments in Pop-up - 4.12?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658107#M61391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is something like this what you're looking for?&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/popup-multipleelements/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/popup-multipleelements/index.html"&gt;Multiple popup elements | ArcGIS API for JavaScript 4.12&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 17:12:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658107#M61391</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2019-10-10T17:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Display Attachments in Pop-up - 4.12?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658108#M61392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;A href="https://community.esri.com/migrated-users/36951"&gt;Noah Sager&lt;/A&gt;&amp;nbsp;- this is uses a URL of a single image for every feature. I had been exploring that approach. Ideally I need a feature attachment that I can embed where the image is different for each feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 19:29:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658108#M61392</guid>
      <dc:creator>ZacStanley3</dc:creator>
      <dc:date>2019-10-10T19:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Display Attachments in Pop-up - 4.12?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658109#M61393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps pass a function to the popup content? Then the function could call the appropriate image based on the feature attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#content" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#content"&gt;PopupTemplate | ArcGIS API for JavaScript 4.13&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff; text-decoration: underline;"&gt;When the feature is clicked, the feature is passed as an argument to the function and provides access to the feature’s graphic and attributes. Set the&amp;nbsp;&lt;/SPAN&gt;outFields&lt;SPAN style="color: #4c4c4c; background-color: #ffffff; text-decoration: underline;"&gt;&amp;nbsp;property to specify any fields needed for rendering the popup. The function then executes and returns a value to display in the popup template.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 20:07:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658109#M61393</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2019-10-10T20:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Display Attachments in Pop-up - 4.12?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658110#M61394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry to ask this - I'm very new to JS. Any chance you could give me a piece sample code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 20:21:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658110#M61394</guid>
      <dc:creator>ZacStanley3</dc:creator>
      <dc:date>2019-10-10T20:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Display Attachments in Pop-up - 4.12?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658111#M61395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try these:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PopupTemplate - use functions to set content&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=popuptemplate-function" title="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=popuptemplate-function"&gt;ArcGIS API for JavaScript Sandbox&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Custom popup actions per feature attribute&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=popup-custom-action" title="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=popup-custom-action"&gt;ArcGIS API for JavaScript Sandbox&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Popup Tutorial&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/guide/configure-pop-ups/" title="https://developers.arcgis.com/javascript/latest/guide/configure-pop-ups/"&gt;Configure pop-ups | ArcGIS API for JavaScript 4.13&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 20:35:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658111#M61395</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2019-10-10T20:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Display Attachments in Pop-up - 4.12?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658112#M61396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;A href="https://community.esri.com/migrated-users/246704"&gt;Noa Stanger&lt;/A&gt;‌!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 20:48:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-attachments-in-pop-up-4-12/m-p/658112#M61396</guid>
      <dc:creator>ZacStanley3</dc:creator>
      <dc:date>2019-10-10T20:48:49Z</dc:date>
    </item>
  </channel>
</rss>

