<?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: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235952#M6371</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replying to myself here, but posting another example of what I'm seeing in case anybody experiences this or knows of a work around.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first image below, the top section (Utility Permits) is the symbology from the feature service. The bottom section is that same data but published as another item/endpoint in the same service, but where every feature has the same symbology (see Utility Permits - Arcade symbology).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each endpoint is added to my AGOL web map individually.&amp;nbsp; In the Utility Permits section I did NOT add an Arcade expression.&amp;nbsp; In the second section I did add the Arcade expression displayed in my original post on 6/26.&amp;nbsp; The second image shows the symbology I see in AGOL based on that expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea why the symbology via the Arcade expression won't show up in the templates?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smart Editor Feature Template Screenshot" class="jive-emoji image-1 jive-image j-img-original" src="/legacyfs/online/498263_Smart Editor Feature Templates 2.png" /&gt;&lt;IMG alt="Symbology from Arcade expression" class="jive-emoji jive-image image-2 j-img-original" src="/legacyfs/online/498264_Arcade symbology.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jun 2020 20:26:17 GMT</pubDate>
    <dc:creator>AdamGebhart</dc:creator>
    <dc:date>2020-06-29T20:26:17Z</dc:date>
    <item>
      <title>Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235949#M6368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the Smart Editor widget not inherit or display symbology derived from an Arcade expression in an AGOL map?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a WAB (Developer 2.13) app in which I'm using the Smart Editor to draw utility permit line features.&amp;nbsp; When I use my AGS feature service as its published, the symbology looks fine in the feature template section (see 'Utility Permits from Service' in first image below).&amp;nbsp; Said symbology is based on field called UtilityType.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I published the service, the users want to only display line features where an additional Display field value = 'Yes'.&amp;nbsp; So, I've created an Arcade expression (provided at bottom) to only display each utility type when Display = Yes.&amp;nbsp; I then set the symbology in AGOL accordingly.&amp;nbsp; The problem is that symbology does NOT carry over to the feature template section in the Smart Editor widget (see 'Utility Permits').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For comparison, the symbology shows up just fine in the Layer List widget (second image).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a limitation or is there something else I need to do?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot of Smart Editor widget features template" class="jive-emoji image-1 jive-image" height="298" src="/legacyfs/online/498014_Smart Editor Feature Templates.png" width="368" /&gt;&lt;IMG alt="Layer List widget displays symbology correctly" class="jive-emoji image-2 jive-image" height="342" src="/legacyfs/online/498015_Utility Permits in Layer List.png" width="343" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;var utility = $feature["Utility_Type"]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;var display = $feature.Display&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;if (display == 'Yes' &amp;amp;&amp;amp; utility == 'Electric'){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Electric"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;else if (display == 'Yes' &amp;amp;&amp;amp; utility == 'Gas'){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Gas"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;else if (display == 'Yes' &amp;amp;&amp;amp; utility == 'Communication'){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Communication&amp;nbsp; "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;else if (display == 'Yes' &amp;amp;&amp;amp; utility == 'Water'){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Water"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;else if (display == 'Yes' &amp;amp;&amp;amp; utility == 'Drainage Tile'){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Drainage Tile"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;else {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "Not Displayed (No)"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2020 14:38:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235949#M6368</guid>
      <dc:creator>AdamGebhart</dc:creator>
      <dc:date>2020-06-26T14:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235950#M6369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/87360"&gt;Adam Gebhart&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;Thank you for sharing your question.&lt;/P&gt;&lt;P&gt;The Smart Editor widget is will display the templates&amp;nbsp;as they were published with your service.&lt;/P&gt;&lt;P&gt;As a workaround, you may want to try updating the layer symbology from the Visualization pane in the layer's item detail.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Go to the visualization tab&lt;/LI&gt;&lt;LI&gt;Select the layer&lt;/LI&gt;&lt;LI&gt;Update the symbology&lt;/LI&gt;&lt;LI&gt;Save the Layer&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/498063_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;5. Add&amp;nbsp; the layer with the updated symbology to your web map (add it again an remove the previous layer if it was already in your map)&lt;/P&gt;&lt;P&gt;6. Update the Smart Editor widget configuration and Save&lt;/P&gt;&lt;P&gt;7. Launch your app&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please note the Smart Editor widget does not currently support displaying symbology set using arcade.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your use case will be taken into consideration for our future enhancements and we will let you know of any related updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alix&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2020 18:42:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235950#M6369</guid>
      <dc:creator>AlixVezina</dc:creator>
      <dc:date>2020-06-26T18:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235951#M6370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/363144"&gt;Alix Vezina&lt;/A&gt;‌ - thank you for the reponse.&amp;nbsp; Just to clarify though, does your example refer to a hosted feature layer?&amp;nbsp; I am working with an ArcGIS Server feature service and not a layer hosted in AGOL or Portal. The web map consumed in a WAB 2.13 (Developer) app resides in AGOL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2020 16:53:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235951#M6370</guid>
      <dc:creator>AdamGebhart</dc:creator>
      <dc:date>2020-06-29T16:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235952#M6371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replying to myself here, but posting another example of what I'm seeing in case anybody experiences this or knows of a work around.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first image below, the top section (Utility Permits) is the symbology from the feature service. The bottom section is that same data but published as another item/endpoint in the same service, but where every feature has the same symbology (see Utility Permits - Arcade symbology).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each endpoint is added to my AGOL web map individually.&amp;nbsp; In the Utility Permits section I did NOT add an Arcade expression.&amp;nbsp; In the second section I did add the Arcade expression displayed in my original post on 6/26.&amp;nbsp; The second image shows the symbology I see in AGOL based on that expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea why the symbology via the Arcade expression won't show up in the templates?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smart Editor Feature Template Screenshot" class="jive-emoji image-1 jive-image j-img-original" src="/legacyfs/online/498263_Smart Editor Feature Templates 2.png" /&gt;&lt;IMG alt="Symbology from Arcade expression" class="jive-emoji jive-image image-2 j-img-original" src="/legacyfs/online/498264_Arcade symbology.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2020 20:26:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235952#M6371</guid>
      <dc:creator>AdamGebhart</dc:creator>
      <dc:date>2020-06-29T20:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235953#M6372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The example above would also apply for a&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;feature service with ArcGIS Server - unfortunately, the template picker in the Smart Editor widget doesn't&amp;nbsp;display the symbology set in the web map using arcade.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2020 21:58:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235953#M6372</guid>
      <dc:creator>AlixVezina</dc:creator>
      <dc:date>2020-06-29T21:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235954#M6373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the information.&amp;nbsp; It seems odd that the Layer List inherits the Arcade symbology, and perhaps other widgets (?), but not the Smart Editor.&amp;nbsp; Regardless, now I know how to proceed.&amp;nbsp; Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2020 20:17:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/235954#M6373</guid>
      <dc:creator>AdamGebhart</dc:creator>
      <dc:date>2020-06-30T20:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/1148085#M21951</link>
      <description>&lt;P&gt;Hi Alix,&amp;nbsp; I have followed the directions (updated the symbology in visualization tab and deleted and then re-added the hosted layer to my map.&amp;nbsp; The Smart Editor App still refuses to show the newly added domain choice (though it is in the legend)&lt;/P&gt;&lt;P&gt;-Jen&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 17:39:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/1148085#M21951</guid>
      <dc:creator>JenniferOtter</dc:creator>
      <dc:date>2022-02-25T17:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Does symbology derived from an Arcade expression not display in the Smart Editor widget templates?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/1233928#M22642</link>
      <description>&lt;P&gt;Same thing here. Did you ever figure out what needed to be done?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 21:32:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/does-symbology-derived-from-an-arcade-expression/m-p/1233928#M22642</guid>
      <dc:creator>County_of_SullivanRPS</dc:creator>
      <dc:date>2022-11-21T21:32:27Z</dc:date>
    </item>
  </channel>
</rss>

