<?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: WAB: How do I customize output messages in GP Widget Output tab? in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844019#M9692</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ryan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;If you are using AGOL WAB app then there is nothing you can do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Oct 2017 16:02:22 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2017-10-27T16:02:22Z</dc:date>
    <item>
      <title>WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844012#M9685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me understand what file(s) and code chunks I need to look at to customize the info, warning, or error messages that get sent to the Output tab of the GP Widget in WAB? Related to this, what should I do if I wanted to output my own custom messages into an on-screen message window that opens only after GP widget is done executing? Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 14:52:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844012#M9685</guid>
      <dc:creator>FrancescoTonini2</dc:creator>
      <dc:date>2017-08-30T14:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844013#M9686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Francesco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;In the Geoprocessing widget.js find the onExecuteComplete function in there you will see that the only messages that are dealt with are warnings and errors:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; onExecuteComplete&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;results&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;_hideLoading&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//show messages if there are warning or error&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; msgs&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;results&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;messages &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; results&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;messages&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;length &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; msgs &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; array&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;filter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;results&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;messages&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;msg&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; msg&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;type &lt;SPAN class="operator token"&gt;===&lt;/SPAN&gt; GPMessage&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TYPE_WARNING &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; msg&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;type &lt;SPAN class="operator token"&gt;===&lt;/SPAN&gt; GPMessage&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TYPE_ERROR&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;msgs&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;length &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;_createErrorMessages&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;msgs&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//the results.results is an array of ParameterValue,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//because it contains one or more parameters&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;_createOutputNodes&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;results&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;results&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;removeClass&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;exeNode&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'jimu-state-disabled'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:20:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844013#M9686</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T10:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844014#M9687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob! Would I still only get warning and error messages even when I set up my GP service to "Info" level? If that is the case, then I could add more warning messages to my GP service code to have those written in the output of the widget (without having to modify it)...am I correct? However, what if I wanted to, say, have an "info" type of message popping up on my screen after running GP widget, with some summary info such as "total CO2 emission" etc? Would I have to modify and add to that same chunk of code you pasted above?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2017 13:06:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844014#M9687</guid>
      <dc:creator>FrancescoTonini2</dc:creator>
      <dc:date>2017-09-01T13:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844015#M9688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you are correct on both accounts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2017 13:23:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844015#M9688</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-09-01T13:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844016#M9689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Quick question.&amp;nbsp; Where/how do I find the .js file for the gp widget that was created and configured in WAB? or does this have to be a custom widget?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2017 15:35:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844016#M9689</guid>
      <dc:creator>RyanDeBruyn1</dc:creator>
      <dc:date>2017-10-27T15:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844017#M9690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ryan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;If you are using WAB Developer then you look in the apps widgets folder (i.e.&amp;nbsp;[Install dir]\server\apps\[app#]\widgets\Geoprocessing).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2017 15:46:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844017#M9690</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-10-27T15:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844018#M9691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&amp;nbsp; &amp;nbsp;This was a GP widget added in WAB online when configuring the web app, so not using WAB Developer directly for widgets.&amp;nbsp; I was thinking might be able to do something similar since the messages are being cleared when task is complete...&amp;nbsp; but most likely limited with the defaults.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2017 15:58:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844018#M9691</guid>
      <dc:creator>RyanDeBruyn1</dc:creator>
      <dc:date>2017-10-27T15:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844019#M9692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ryan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;If you are using AGOL WAB app then there is nothing you can do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2017 16:02:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844019#M9692</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-10-27T16:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844020#M9693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Ryan, I found a work around to help with this if you are doing it in an out of the box GP widget. . Let me know if you are still needing help with this&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2017 20:09:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844020#M9693</guid>
      <dc:creator>AhnaMiller2</dc:creator>
      <dc:date>2017-11-07T20:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844021#M9694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahna that's awesome yes.  Just using out of the box online gp widget from web app builder.  Would love it if my messages remained in the dialog after execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Much thanks!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Ryan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get Outlook for iOS&amp;lt;https://aka.ms/o0ukef&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2017 22:51:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844021#M9694</guid>
      <dc:creator>RyanDeBruyn1</dc:creator>
      <dc:date>2017-11-07T22:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844022#M9695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure thing, do you have an email I can send to directly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2017 22:57:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844022#M9695</guid>
      <dc:creator>AhnaMiller2</dc:creator>
      <dc:date>2017-11-07T22:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844023#M9696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/ahnamiller"&gt;ahnamiller&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;I am interested in this solution since I am trying to do the same. Is there any way you can share the&amp;nbsp;workaround solution?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;EC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 15:03:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844023#M9696</guid>
      <dc:creator>ErnestoCarreras4</dc:creator>
      <dc:date>2018-04-02T15:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844024#M9697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/people/Ernestocd"&gt;Ernestocd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I achieved this by creating a python script from desktop and publishing as a Geoprocessing service that can then be served up in the geoprocessing widget.&amp;nbsp; Your script should contain an output that has an arcpy.AddMessage() and arcpy.SetParameterAsText() . The set parameter as text will be the thing that passes information as an output.&amp;nbsp;&lt;BR /&gt;Here's a small snippet of what this looks like:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Snippet of Code" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/400279_snippet.jpg" style="width: 522px; height: 106px;" /&gt;&lt;/P&gt;&lt;P&gt;In the properties of the script tool, &amp;nbsp;set your parameter properties to be Type: Derived &amp;amp; Direction: Output (this makes sure the message you put in for SetParameterAsText() is an output)&lt;SPAN style="color: #1f497d;"&gt;&lt;BR /&gt;&lt;IMG alt="Properties Dialogue box" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/400400_scriptProperties.jpg" style="height: 406px;" width="326" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Additionally, when you are publishing your service on the Parameters tab of the Service Editor box, set the message level to Info&lt;SPAN style="font-size: 11.0pt; color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #1f497d;"&gt;&lt;IMG alt="ServiceEditor" class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/400401_serviceeditor.jpg" style="width: 532px; height: 411px;" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Hope this helps! Feel free to reach out if you get stuck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 15:21:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844024#M9697</guid>
      <dc:creator>AhnaMiller2</dc:creator>
      <dc:date>2018-04-02T15:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844025#M9698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worked like a charm! Thanks &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 18:45:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844025#M9698</guid>
      <dc:creator>ErnestoCarreras4</dc:creator>
      <dc:date>2018-04-02T18:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844026#M9699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #000000; font-size: 21px;"&gt;@Ahna Miller, this is an excellent technique; I've been attempting to accomplish this for more than a week, thanks! One question: although my messages print to the Output tab, they only appear after the GP widget is finished executing. Is this your experience? Ideally, I would like my users to see messages while the process is running, especially during long-running scripts. Is there a way to output messages while the process is running? Thanks again&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2018 15:52:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844026#M9699</guid>
      <dc:creator>MarcelBuford1</dc:creator>
      <dc:date>2018-05-21T15:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844027#M9700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So glad it worked well for you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you describe has been my experience as well, unfortunately. If you, or anyone here has found how to do it, I'd appreciate the advice- maybe the key lies in synchronous or asynchronous publishing of the service?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2018 17:00:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844027#M9700</guid>
      <dc:creator>AhnaMiller2</dc:creator>
      <dc:date>2018-05-21T17:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844028#M9701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Robert -- just confirming before I edit one of the annoyingly detailed GP services that everything else is in order &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the geoprocessing/widget.js is updated to pull in the appropriate message types:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/408875_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and once the job is configured to report 'Info' level messages (and the script is doing so):&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/408868_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the python script sets an output parameter of&amp;nbsp;the output message, then the geoprocessing widget should show all messages after the geoprocessing task is complete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I missing anything, to your knowledge?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 15:06:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844028#M9701</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2018-05-23T15:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844029#M9702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not that I know of.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 15:10:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844029#M9702</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-05-23T15:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: WAB: How do I customize output messages in GP Widget Output tab?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844030#M9703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, i'll give it a go and report back to the team &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 15:14:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-how-do-i-customize-output-messages-in-gp/m-p/844030#M9703</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2018-05-23T15:14:37Z</dc:date>
    </item>
  </channel>
</rss>

