<?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 Show Attachments in Details Widget for Multiple Layers Combined Through Data Expression in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/show-attachments-in-details-widget-for-multiple/m-p/1334067#M8537</link>
    <description>&lt;P&gt;I currently have a dashboard that combines multiple layers through data expression. How can I make the Details widget show attachments? I have already enabled the Attachements button in the Details option.&lt;/P&gt;&lt;P&gt;var portal = Portal('&lt;A href="https://www.arcgis.com/" target="_blank"&gt;https://www.arcgis.com/&lt;/A&gt;')&lt;/P&gt;&lt;P&gt;//Create a feature set for each point, line, and polygon layer and include the cost feild&lt;BR /&gt;var A_fs = FeatureSetByPortalItem(portal, '2acf48490fbc47d2b99e06f84c0dbe24', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var B_fs = FeatureSetByPortalItem(portal, '75079cb03040425793197f87b65d242f', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var C_fs = FeatureSetByPortalItem(portal, 'ca1c074acd7742edab0497bec288d6df', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var D_fs = FeatureSetByPortalItem(portal, 'fb75429710e247949fb8ad861558b253', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var E_fs = FeatureSetByPortalItem(portal, '0baa26106ff44aaa82cfa3a209dd1e7e', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var F_fs = FeatureSetByPortalItem(portal, '04f7ee15087148e3844593afd158fd8f', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;/P&gt;&lt;P&gt;//Create an empty array and variable for the new FeatureSet that you will push/combine your features into&lt;BR /&gt;var features = [];&lt;BR /&gt;var feat;&lt;/P&gt;&lt;P&gt;//Push each feature from each layer into the empty array&lt;BR /&gt;for (var f in A_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in B_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in C_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in D_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in E_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in F_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;//Create final FeatureSet from combined features&lt;BR /&gt;var combinedDict = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 'fields': [&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'OBJECTID', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'ServiceArea', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'BusinessZone', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'DMACode', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'MeterNumber', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'Status', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'NewReading', 'type': 'esriFieldTypeInteger' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 'geometryType': '',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 'features': features,&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;return FeatureSet(Text(combinedDict));&lt;/P&gt;</description>
    <pubDate>Mon, 02 Oct 2023 07:23:24 GMT</pubDate>
    <dc:creator>GeoGeek</dc:creator>
    <dc:date>2023-10-02T07:23:24Z</dc:date>
    <item>
      <title>Show Attachments in Details Widget for Multiple Layers Combined Through Data Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/show-attachments-in-details-widget-for-multiple/m-p/1334067#M8537</link>
      <description>&lt;P&gt;I currently have a dashboard that combines multiple layers through data expression. How can I make the Details widget show attachments? I have already enabled the Attachements button in the Details option.&lt;/P&gt;&lt;P&gt;var portal = Portal('&lt;A href="https://www.arcgis.com/" target="_blank"&gt;https://www.arcgis.com/&lt;/A&gt;')&lt;/P&gt;&lt;P&gt;//Create a feature set for each point, line, and polygon layer and include the cost feild&lt;BR /&gt;var A_fs = FeatureSetByPortalItem(portal, '2acf48490fbc47d2b99e06f84c0dbe24', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var B_fs = FeatureSetByPortalItem(portal, '75079cb03040425793197f87b65d242f', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var C_fs = FeatureSetByPortalItem(portal, 'ca1c074acd7742edab0497bec288d6df', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var D_fs = FeatureSetByPortalItem(portal, 'fb75429710e247949fb8ad861558b253', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var E_fs = FeatureSetByPortalItem(portal, '0baa26106ff44aaa82cfa3a209dd1e7e', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;BR /&gt;var F_fs = FeatureSetByPortalItem(portal, '04f7ee15087148e3844593afd158fd8f', 0, ['OBJECTID','ServiceArea','BusinessZone','DMACode','MeterNumber','Status','NewReading'], false)&lt;/P&gt;&lt;P&gt;//Create an empty array and variable for the new FeatureSet that you will push/combine your features into&lt;BR /&gt;var features = [];&lt;BR /&gt;var feat;&lt;/P&gt;&lt;P&gt;//Push each feature from each layer into the empty array&lt;BR /&gt;for (var f in A_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in B_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in C_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in D_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in E_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;for (var f in F_fs) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; feat = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'attributes': {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'OBJECTID': f['OBJECTID'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'ServiceArea': f['ServiceArea'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'BusinessZone': f['BusinessZone'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'DMACode': f['DMACode'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'MeterNumber': f['MeterNumber'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Status': f['Status'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'NewReading': f['NewReading'],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Push(features, feat)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;//Create final FeatureSet from combined features&lt;BR /&gt;var combinedDict = {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 'fields': [&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'OBJECTID', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'ServiceArea', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'BusinessZone', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'DMACode', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'MeterNumber', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'Status', 'type': 'esriFieldTypeString' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { 'name': 'NewReading', 'type': 'esriFieldTypeInteger' },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 'geometryType': '',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 'features': features,&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;return FeatureSet(Text(combinedDict));&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 07:23:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/show-attachments-in-details-widget-for-multiple/m-p/1334067#M8537</guid>
      <dc:creator>GeoGeek</dc:creator>
      <dc:date>2023-10-02T07:23:24Z</dc:date>
    </item>
  </channel>
</rss>

