<?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: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330622#M8746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a patch for WAB for this specific issue with Chrome 51&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.0 -&amp;nbsp;&lt;A href="https://community.esri.com/docs/DOC-8368"&gt;Web AppBuilder 2.0 patch for Chrome51&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.3 -&amp;nbsp;&lt;A href="https://community.esri.com/docs/DOC-8391"&gt;https://community.esri.com/docs/DOC-8391&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.2 -&amp;nbsp;&lt;A href="https://community.esri.com/docs/DOC-8370"&gt;Web AppBuilder 1.2 patch for Chrome 51.0.2704.63&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Aug 2016 21:57:01 GMT</pubDate>
    <dc:creator>ErwinSoekianto</dc:creator>
    <dc:date>2016-08-16T21:57:01Z</dc:date>
    <item>
      <title>Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330614#M8738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had a user that was not seeing all of the options in the print widget, namely the advanced button and title, etc - print button does show up. Once I noticed they were using Chrome 52, I upgraded and that is the problem. I haven't found any other widgets that have been affected yet. The Print widget tries to load and then I get a time out message. It does work properly in IE11. As half my users are on Chrome - not good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://gis.snco.us/publicgis/ps/" title="http://gis.snco.us/publicgis/ps/"&gt;Property Search&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a fix for this? Has anyone else noticed?&amp;nbsp; Would upgrading to WAB DE 2.1 fix the issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="357" src="https://community.esri.com/legacyfs/online/214651_pastedImage_0.png" style="width: 328px; height: 357.339px;" width="328" /&gt;&lt;IMG class="image-2 jive-image" height="350" src="https://community.esri.com/legacyfs/online/214742_pastedImage_1.png" style="width: 315px; height: 349.532px;" width="315" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 16:47:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330614#M8738</guid>
      <dc:creator>LeeAllen</dc:creator>
      <dc:date>2016-08-08T16:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330615#M8739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; It is affecting 1.3, 2.0 and 2.1 sites. The workaround if to setup a proxy (if you have not dome so yet) and modify the Print.js file to have the _getPrintTaskInfo function esriRequest to use the proxy (line 17).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;_getPrintTaskInfo: function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // portal own print url: portalname/arcgis/sharing/tools/newPrint
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var def = new Deferred();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (this._isNewPrintUrl) { // portal own print url
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; def.resolve({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; isGPPrint: false
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esriRequest({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url: this.printTaskURL,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; content: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f: "json"
&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;&amp;nbsp;&amp;nbsp; callbackParamName: "callback",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; handleAs: "json",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeout: 60000
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },{useProxy: true, usePost: false}).then(lang.hitch(this, function(data) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; def.resolve({
&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; isGPPrint: true,
&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; data: data
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }), lang.hitch(this, function(err) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; def.resolve({
&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; error: err
&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;&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; }

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return def;
&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:39:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330615#M8739</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T15:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330616#M8740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works for Developer Edition Apps, but what about those that are built using AGOL WAB?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 17:24:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330616#M8740</guid>
      <dc:creator>MichaelMiller2</dc:creator>
      <dc:date>2016-08-08T17:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330617#M8741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to contact esri tech support and see if they can resolve this issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 17:40:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330617#M8741</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-08-08T17:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330618#M8742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Robert, you saved the day again. I had to go through all the steps to set up the proxy first, but finally got all my apps back up and running.&amp;nbsp; BTW - esri support thinks you are a legend!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For anyone looking for the information on how to set up a proxy - here are the links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.esri.com/esri/supportcenter/2015/04/07/setting-up-a-proxy/" title="https://blogs.esri.com/esri/supportcenter/2015/04/07/setting-up-a-proxy/"&gt;Setting up a Proxy | Support Services Blog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.esri.com/esri/supportcenter/2015/10/28/setting-up-a-proxy-with-web-appbuilder-for-arcgis-developer-edition/" title="https://blogs.esri.com/esri/supportcenter/2015/10/28/setting-up-a-proxy-with-web-appbuilder-for-arcgis-developer-edition/"&gt;Setting up a proxy with Web AppBuilder Developer Edition | Support Services Blog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My workflow now is to download the code from WAB, then edit the config.json and print.js files.&lt;/P&gt;&lt;P&gt;Since I did not utilize secure services for this site, I did not have specific rules to add in the config.json inside the [].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 17:50:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330618#M8742</guid>
      <dc:creator>LeeAllen</dc:creator>
      <dc:date>2016-08-09T17:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330619#M8743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to set up a proxy as well, I don't have any secure services, so do I need the Client Id's and app Id's still?&lt;/P&gt;&lt;P&gt;I haven't registered any of my applications, I just host them on a server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 15:50:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330619#M8743</guid>
      <dc:creator>LeoLadefian5</dc:creator>
      <dc:date>2016-08-16T15:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330620#M8744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To configure just the print widget to work properly, I did not use Client IDs or App IDs, I don't believe. Here is what I wrote down for myself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// for proxy.config file&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt;&lt;BR /&gt;&amp;lt;ProxyConfig allowedReferers="*"&lt;BR /&gt; mustMatch="false"&amp;gt;&lt;BR /&gt; &amp;lt;serverUrls&amp;gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;serverUrl url="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fmydomain.com" rel="nofollow" target="_blank"&gt;http://mydomain.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt; matchAll="true"/&amp;gt;&lt;BR /&gt; &amp;lt;/serverUrls&amp;gt;&lt;BR /&gt;&amp;lt;/ProxyConfig&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;!-- See &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fgithub.com%2FEsri%2Fresource-proxy" rel="nofollow" target="_blank"&gt;https://github.com/Esri/resource-proxy&lt;/A&gt;&lt;SPAN&gt; for more information --&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//in the config.json file:&lt;/EM&gt;&lt;BR /&gt; //scroll to bottom about line 518: make sure httpProxy is set to:&lt;BR /&gt; },&lt;BR /&gt; "wabVersion": "2.0.1",&lt;BR /&gt; "isTemplateApp": true,&lt;BR /&gt; "isWebTier": false,&lt;BR /&gt; "httpProxy": {&lt;BR /&gt; "useProxy": true,&lt;BR /&gt; "alwaysUseProxy": false,&lt;BR /&gt;&lt;SPAN&gt; "url": "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fyourdomain.com%2Ffolder%2FProxy%2Fproxy.ashx" rel="nofollow" target="_blank"&gt;http://yourdomain.com/folder/Proxy/proxy.ashx&lt;/A&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;BR /&gt; "rules": []&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//And in the widgets\print\print.js file: about line 187 is set to useProxy&lt;/EM&gt;&lt;BR /&gt;_getPrintTaskInfo: function() {&lt;BR /&gt; // portal own print url: portalname/arcgis/sharing/tools/newPrint&lt;BR /&gt; var def = new Deferred();&lt;BR /&gt; if (this._isNewPrintUrl) { // portal own print url&lt;BR /&gt; def.resolve({&lt;BR /&gt; isGPPrint: false&lt;BR /&gt; });&lt;BR /&gt; } else {&lt;BR /&gt; esriRequest({&lt;BR /&gt; url: this.printTaskURL,&lt;BR /&gt; content: {&lt;BR /&gt; f: "json"&lt;BR /&gt; },&lt;BR /&gt; callbackParamName: "callback",&lt;BR /&gt; handleAs: "json",&lt;BR /&gt; timeout: 60000&lt;BR /&gt; &lt;STRONG&gt;},{useProxy: true, usePost: false}).then(lang.hitch(this, function(data) {&lt;/STRONG&gt;&lt;BR /&gt; def.resolve({&lt;BR /&gt; isGPPrint: true,&lt;BR /&gt; data: data&lt;BR /&gt; });&lt;BR /&gt; }), lang.hitch(this, function(err) {&lt;BR /&gt; def.resolve({&lt;BR /&gt; error: err&lt;BR /&gt; });&lt;BR /&gt; })&lt;BR /&gt; );&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;return def;&lt;BR /&gt; },&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 16:04:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330620#M8744</guid>
      <dc:creator>LeeAllen</dc:creator>
      <dc:date>2016-08-16T16:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330621#M8745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert is a living legend&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 21:55:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330621#M8745</guid>
      <dc:creator>ErwinSoekianto</dc:creator>
      <dc:date>2016-08-16T21:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330622#M8746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a patch for WAB for this specific issue with Chrome 51&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.0 -&amp;nbsp;&lt;A href="https://community.esri.com/docs/DOC-8368"&gt;Web AppBuilder 2.0 patch for Chrome51&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.3 -&amp;nbsp;&lt;A href="https://community.esri.com/docs/DOC-8391"&gt;https://community.esri.com/docs/DOC-8391&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.2 -&amp;nbsp;&lt;A href="https://community.esri.com/docs/DOC-8370"&gt;Web AppBuilder 1.2 patch for Chrome 51.0.2704.63&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 21:57:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330622#M8746</guid>
      <dc:creator>ErwinSoekianto</dc:creator>
      <dc:date>2016-08-16T21:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330623#M8747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or you can just set the mustMatch parameter to be false in the proxy.config and no need to have any serverurl&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 21:58:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330623#M8747</guid>
      <dc:creator>ErwinSoekianto</dc:creator>
      <dc:date>2016-08-16T21:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330624#M8748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Erwin,&lt;/P&gt;&lt;P&gt;&amp;nbsp; I tried to install the patch for 1.3, and now I when I&amp;nbsp;click on the OK button when creating a new app, I get this error: &lt;/P&gt;&lt;P&gt;TypeError: Object doesn't support property or method 'stripHTML'&lt;/P&gt;&lt;P&gt;at _createAppNode (&lt;A class="unlinked" href="https://myMachine:3344/webappbuilder/builder/main.js:2622:162"&gt;https://myMachine:3344/webappbuilder/builder/main.js:2622:162&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;Any ideas?&amp;nbsp; Can I get the old 1.3 developer download so that I can replace my main.js file so that I am able to at least create a new app?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 23:06:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330624#M8748</guid>
      <dc:creator>SebastianRoberts</dc:creator>
      <dc:date>2016-08-23T23:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330625#M8749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, you can download previous version from here,&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/downloads/" title="https://developers.arcgis.com/downloads/"&gt;SDK Downloads | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2016 21:02:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330625#M8749</guid>
      <dc:creator>ErwinSoekianto</dc:creator>
      <dc:date>2016-08-24T21:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330626#M8750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Information from JSAPI team:&amp;nbsp;&lt;BR /&gt;This is a known bug that chrome introduced at Chrome 52. Here is the active chrome 52 bug around this issue.&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fbugs.chromium.org%2Fp%2Fchromium%2Fissues%2Fdetail%3Fid%3D633696" rel="nofollow" target="_blank"&gt;https://bugs.chromium.org/p/chromium/issues/detail?id=633696&lt;/A&gt;&lt;BR /&gt;It references a duplicate issue that exhibits the behavior we are seeing in comment 15. A patch is under review in chromium. The workaround is to bust the cache by introducing a timestamp in the request.&lt;BR /&gt;&lt;SPAN&gt;The bug also does not show up if you submit the second request in another context.&amp;nbsp;&lt;/SPAN&gt;The fix may be in a patch for chrome 52.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2016 01:22:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330626#M8750</guid>
      <dc:creator>Jianxia</dc:creator>
      <dc:date>2016-08-25T01:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330627#M8751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;note - September 1st, 2016 -&amp;nbsp;Chrome updated to 53 and the problem still exists.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2016 15:17:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330627#M8751</guid>
      <dc:creator>DaveOrlando</dc:creator>
      <dc:date>2016-09-01T15:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330628#M8752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue has been fixed at app level and will be available in AGOL September release and Developer Editon 2.2.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 00:23:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330628#M8752</guid>
      <dc:creator>Jianxia</dc:creator>
      <dc:date>2016-09-02T00:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330629#M8753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jianxia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Can you provide a code snippet for the changes we need to make for the fix until the next version comes out?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 00:45:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330629#M8753</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-09-02T00:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330630#M8754</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;This is a bug of chrome52&lt;A href="https://bugs.chromium.org/p/chromium/issues/detail?id=633696" title="https://bugs.chromium.org/p/chromium/issues/detail?id=633696"&gt;Issue 633696 - chromium - onreadystatechange not fired for 304 Not Modified - Monorail&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;To solve the problem in Print, we just need to prevent cache in chrome52.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;client/stemapp/widgets/Print/Print.js&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/218988_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;client/stemapp/widgets/Print/Widget.js&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/218989_pastedImage_2.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there still have problems please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Zezheng&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 01:28:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330630#M8754</guid>
      <dc:creator>ZeZhengLi</dc:creator>
      <dc:date>2016-09-02T01:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330631#M8755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just found that by update Chrome to version&amp;nbsp;&lt;SPAN style="color: #303942;"&gt;Version 53.0.2785.116 m fix the issues with printing widget that no printing options are&amp;nbsp;displayed and session time out message pops up.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2016 19:59:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330631#M8755</guid>
      <dc:creator>HelenZhou</dc:creator>
      <dc:date>2016-09-16T19:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Chrome 52 and WAB 2.0 DE site - Print widget does not show advanced options</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330632#M8756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We had this problem too, starting about August 10.&amp;nbsp;&amp;nbsp;&amp;nbsp; Today we found that updating Chrome to version 53.02 fixes the problem, so we did not have to manually &amp;nbsp;modify any code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all the details in this thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2016 19:11:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/chrome-52-and-wab-2-0-de-site-print-widget-does/m-p/330632#M8756</guid>
      <dc:creator>MichaelJenkins</dc:creator>
      <dc:date>2016-09-22T19:11:49Z</dc:date>
    </item>
  </channel>
</rss>

