<?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: Public Notification solution and Arcade expressions in the popup in ArcGIS Solutions Questions</title>
    <link>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90684#M122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you post&amp;nbsp; the expression you are using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it should work, if your expression returns a 'string' + textformating.newline + 'string'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Sep 2019 13:01:13 GMT</pubDate>
    <dc:creator>MarkBockenhauer</dc:creator>
    <dc:date>2019-09-26T13:01:13Z</dc:date>
    <item>
      <title>Public Notification solution and Arcade expressions in the popup</title>
      <link>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90683#M121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am implementing the Public Notification application in our county. I have deployed it using the solutions deployment tool, I have added fields required by our situation (ADDRESS2, INCAREOF, COUNTRY) and I have configured the popup to show that information. I used an arcade expression that uses some conditional statements based on the contents of ADDRESS2 and INCAREOF - I skip those lines if those fields are blank. But when I create labels based off of the popup, it returns all of the text on a single line. I am assuming the application is looking for a newline character that the custom popup dialog spits out instead of the Arcade "TextFormatting.NewLine". Does anyone know what I could put in my Arcade expression to mimic that newline character?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2019 21:38:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90683#M121</guid>
      <dc:creator>JeffWard</dc:creator>
      <dc:date>2019-09-25T21:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Public Notification solution and Arcade expressions in the popup</title>
      <link>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90684#M122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you post&amp;nbsp; the expression you are using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it should work, if your expression returns a 'string' + textformating.newline + 'string'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2019 13:01:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90684#M122</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2019-09-26T13:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Public Notification solution and Arcade expressions in the popup</title>
      <link>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90685#M123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my expression. It works fine when I click on a property, but the output doesn't work in the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;If(IsEmpty($feature.ADDRESS2) &amp;amp;&amp;amp; IsEmpty($feature.INCAREOF)) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return $feature.OWNERNME1 + TextFormatting.NewLine + $feature.PSTLADDRESS + TextFormatting.NewLine + $feature.PSTLCITY + " " + $feature.PSTLSTATE + " " + $feature.ZIP&lt;BR /&gt;}&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;If(IsEmpty($feature.ADDRESS2) &amp;amp;&amp;amp; !IsEmpty($feature.INCAREOF)) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return $feature.OWNERNME1 + TextFormatting.NewLine + $feature.INCAREOF + TextFormatting.NewLine + $feature.PSTLADDRESS + TextFormatting.NewLine + $feature.PSTLCITY + " " + $feature.PSTLSTATE + " " + $feature.ZIP&lt;BR /&gt;}&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;If(!IsEmpty($feature.ADDRESS2) &amp;amp;&amp;amp; IsEmpty($feature.INCAREOF)) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return $feature.OWNERNME1 + TextFormatting.NewLine + $feature.PSTLADDRESS + TextFormatting.NewLine + $feature.ADDRESS2 + TextFormatting.NewLine + $feature.PSTLCITY + " " + $feature.PSTLSTATE + " " + $feature.ZIP&lt;BR /&gt;}&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;If(!IsEmpty($feature.ADDRESS2) &amp;amp;&amp;amp; !IsEmpty($feature.INCAREOF)) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return $feature.OWNERNME1 + TextFormatting.NewLine + $feature.INCAREOF + TextFormatting.NewLine + $feature.PSTLADDRESS + TextFormatting.NewLine + $feature.ADDRESS2 + TextFormatting.NewLine + $feature.PSTLCITY + " " + $feature.PSTLSTATE + " " + $feature.ZIP&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2019 14:08:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90685#M123</guid>
      <dc:creator>JeffWard</dc:creator>
      <dc:date>2019-09-26T14:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Public Notification solution and Arcade expressions in the popup</title>
      <link>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90686#M124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Found out the Textformatting.newline is not supported in a web-browser.&amp;nbsp; This article explains -&amp;nbsp;&lt;A class="link-titled" href="https://support.esri.com/en/technical-article/000019957" title="https://support.esri.com/en/technical-article/000019957"&gt;FAQ: Is it possible to create multiline labels in ArcGIS Online?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry about that, I have been working with desktop and Esri runtime apps, and it will format in an app like Explorer for ArcGIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Sep 2019 14:15:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90686#M124</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2019-09-27T14:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Public Notification solution and Arcade expressions in the popup</title>
      <link>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90687#M125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The public notification app grabs the information from the popup, which&amp;nbsp; does allow newline formatting. I'm thinking the process between popup to pdf doesn't handle the newline formatting. I think I'm going to download the source code and see if I can't see where it is falling apart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2019 21:58:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/90687#M125</guid>
      <dc:creator>JeffWard</dc:creator>
      <dc:date>2019-10-15T21:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Public Notification solution and Arcade expressions in the popup</title>
      <link>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/1266006#M1096</link>
      <description>&lt;P&gt;Basic question: how do you get access to the widget scripting to add columns to the report? I just need to add one column to the csv.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 15:38:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-solutions-questions/public-notification-solution-and-arcade/m-p/1266006#M1096</guid>
      <dc:creator>MattCannady_BC</dc:creator>
      <dc:date>2023-03-09T15:38:07Z</dc:date>
    </item>
  </channel>
</rss>

