<?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: Best Use Case for Google Analytics in WAB? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329083#M8678</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for this thread.&amp;nbsp; It was very useful.&amp;nbsp; I got analytics going, and thought I would share my method.&amp;nbsp; In the index.html, before the closing &amp;lt;/head&amp;gt; tag,&amp;nbsp; I added the Analytics code from the top of this &lt;A href="https://developers.google.com/analytics/devguides/collection/analyticsjs/"&gt;Google Page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I wrapped the whole thing in an if statement:&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-family: 'courier new', courier;"&gt;if (document.domain === 'gis.nevcounty.net' )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;so that the tracking only occurs once the app is deployed to our production web server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a separate tracker code for our widget analytics, so I also added this line:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ga('create', 'XX-XXXXXX-X', 'auto',{'name': 'widgetTracker'}); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;widgetTracker&lt;/SPAN&gt; is just a name that is assigend so that you can send page views or events to either tracker.&amp;nbsp; Just use &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN class="pln"&gt;ga&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="str"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;'send'....&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for the first tracker, or &lt;SPAN style="font-family: 'courier new', courier;"&gt;ga('widgetTracker.send'.....&lt;/SPAN&gt;&amp;nbsp; for the second tracker.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;So when the eSearch tool is opened, I log a pageview using the widgetTracker code, by adding this code to the beginning of the postCreate function:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;if (ga){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ga('widgetTracker.send', 'pageview','MN_Widget/' + this.name); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;The above will only log once when the widget is created, so it tells you that the tool was used during this session.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="str"&gt;I log specific events for various widget functions.&amp;nbsp; So for instance if a user does a search using the eSearch tool, I added the following lines in Widget.js to the onSearch function that will track the type of search that they did:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;if (ga){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str" style="font-family: 'courier new', courier;"&gt;&amp;nbsp; var trackerLabelString = this.config.layers[this.AttributeLayerIndex].name&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str" style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ga('widgetTracker.send', 'event', 'search', 'by Attribute: ' + trackerLabelString , {'nonInteraction': 1});&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;According to the documentation, the 'nonInteraction' object will send the event without impacting your bounce rate.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Sep 2015 18:02:32 GMT</pubDate>
    <dc:creator>SebastianRoberts</dc:creator>
    <dc:date>2015-09-04T18:02:32Z</dc:date>
    <item>
      <title>Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329076#M8671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I want to have Google Analytics for my WAB Maps. I realize this is a MUCH better environment for this than back in Flex (where you had to have widgets and such to do this) but I am curious what the best way to do this would be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have considered creating a WAB Template map that has Google Analytics code pre-populated requiring minor adjustments. I have considered trying my hand at a Widget (for several reasons). I have considered just editing the code once the WAB Map is completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a recommended process for this? Or are we wild westing this stuff right now since WAB is still in BETA?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 16:02:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329076#M8671</guid>
      <dc:creator>BrianO_keefe</dc:creator>
      <dc:date>2014-11-14T16:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329077#M8672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brain,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I don't believe that esri has come out with a recommended process for this. The way that I always did it in Flex and will continue to do it in the StemApp is to add the GA code to the StemApp template (index.html).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 16:44:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329077#M8672</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2014-11-14T16:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329078#M8673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This kind of depends on what you are looking to get out of it. GA will give you page/session stats, but not much details as to whether anyone ever clicks on a draw or search button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out &lt;A href="http://blog.davebouwman.com/2014/02/12/telemetry-part-2-the-code/"&gt;Dave Bouwmans post&lt;/A&gt; on this subject, lots of good stuff there. His samples are in Backbone, but no reason you couldn't do same hooks in widgets. Only problem is this is only good for widgets you write. It would be much easier if widget interaction in WAB was done via dojo/topic, but I'm not sure if it is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 16:51:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329078#M8673</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2014-11-14T16:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329079#M8674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My thoughts are simply a webcounter (if you will) showing each time a REST Service is hit. It would be GREAT if it could compile these hits into sessions. So that I could tell that USER X accessed the map, hit the REST Service 25 times (probably by scrolling or address locating) and access this REST Service twice via popups (I could tell popups because certain layers have popups and certain layers don't).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 17:24:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329079#M8674</guid>
      <dc:creator>BrianO_keefe</dc:creator>
      <dc:date>2014-11-14T17:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329080#M8675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We also have a need to have Google Analytics tracking each time our WAB app is opened.&amp;nbsp; We have a web map application built with WAB for Developers 1.1 and recently deployed to our web server.&amp;nbsp; We have a snippet of GA code that goes into all our other web pages and I was asked to add it to the web map 'page'.&amp;nbsp; I am not sure where to paste it or best practice for doing so.&amp;nbsp; Any help would be appreciated!&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 20:44:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329080#M8675</guid>
      <dc:creator>AmyKnight</dc:creator>
      <dc:date>2015-04-23T20:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329081#M8676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you just want to know when the app was opened and some user stats on that then you just need to place the GA script tags in the head of the index.html file for the app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 21:11:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329081#M8676</guid>
      <dc:creator>StanMcShinsky</dc:creator>
      <dc:date>2015-04-23T21:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329082#M8677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Stan!&amp;nbsp; I think I've got it-&amp;nbsp;&amp;nbsp; I was just doing what you suggest following Robert's post above. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 21:16:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329082#M8677</guid>
      <dc:creator>AmyKnight</dc:creator>
      <dc:date>2015-04-23T21:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329083#M8678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for this thread.&amp;nbsp; It was very useful.&amp;nbsp; I got analytics going, and thought I would share my method.&amp;nbsp; In the index.html, before the closing &amp;lt;/head&amp;gt; tag,&amp;nbsp; I added the Analytics code from the top of this &lt;A href="https://developers.google.com/analytics/devguides/collection/analyticsjs/"&gt;Google Page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I wrapped the whole thing in an if statement:&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-family: 'courier new', courier;"&gt;if (document.domain === 'gis.nevcounty.net' )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;so that the tracking only occurs once the app is deployed to our production web server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a separate tracker code for our widget analytics, so I also added this line:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ga('create', 'XX-XXXXXX-X', 'auto',{'name': 'widgetTracker'}); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;widgetTracker&lt;/SPAN&gt; is just a name that is assigend so that you can send page views or events to either tracker.&amp;nbsp; Just use &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN class="pln"&gt;ga&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="str"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;'send'....&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for the first tracker, or &lt;SPAN style="font-family: 'courier new', courier;"&gt;ga('widgetTracker.send'.....&lt;/SPAN&gt;&amp;nbsp; for the second tracker.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;So when the eSearch tool is opened, I log a pageview using the widgetTracker code, by adding this code to the beginning of the postCreate function:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;if (ga){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ga('widgetTracker.send', 'pageview','MN_Widget/' + this.name); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;The above will only log once when the widget is created, so it tells you that the tool was used during this session.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="str"&gt;I log specific events for various widget functions.&amp;nbsp; So for instance if a user does a search using the eSearch tool, I added the following lines in Widget.js to the onSearch function that will track the type of search that they did:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;if (ga){&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str" style="font-family: 'courier new', courier;"&gt;&amp;nbsp; var trackerLabelString = this.config.layers[this.AttributeLayerIndex].name&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="str" style="font-family: 'courier new', courier;"&gt;&amp;nbsp; ga('widgetTracker.send', 'event', 'search', 'by Attribute: ' + trackerLabelString , {'nonInteraction': 1});&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;According to the documentation, the 'nonInteraction' object will send the event without impacting your bounce rate.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 18:02:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329083#M8678</guid>
      <dc:creator>SebastianRoberts</dc:creator>
      <dc:date>2015-09-04T18:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329084#M8679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sebastian - &lt;/P&gt;&lt;P&gt;I just wanted to thank you for posting this! I have GA running on my index.html but now need to track individual widget hits, so this post will be very helpful. (I may have questions as I go along....).&lt;/P&gt;&lt;P&gt;Thanks again for the info. - Meg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2016 17:27:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329084#M8679</guid>
      <dc:creator>MegPeterson</dc:creator>
      <dc:date>2016-03-04T17:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329085#M8680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this out..&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/igrasshoff/esri-wab-widget-google-analytics" title="https://github.com/igrasshoff/esri-wab-widget-google-analytics"&gt;GitHub - igrasshoff/esri-wab-widget-google-analytics: A google analytics widget &amp;amp; template for use in Esri Web AppBuilde…&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 21:03:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329085#M8680</guid>
      <dc:creator>IanGrasshoff</dc:creator>
      <dc:date>2016-09-09T21:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329086#M8681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This widget doesn't appear to open in WAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 19:27:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329086#M8681</guid>
      <dc:creator>DanielChantlos1</dc:creator>
      <dc:date>2016-09-13T19:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329087#M8682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's right, it's not supposed to be visible to the user.&amp;nbsp; That's part of the changes I made to original when I forked it.&amp;nbsp; I didn't want it sitting in a menu somewhere for a user to click it wondering what it was for.&amp;nbsp; It's still logging to GA in the background.&amp;nbsp; Does that make sense?&amp;nbsp; I should update the README file in the repo...there really was nothing there from the original.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 21:12:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329087#M8682</guid>
      <dc:creator>IanGrasshoff</dc:creator>
      <dc:date>2016-09-13T21:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329088#M8683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm testing your branch of the GA widget in WAB 2.3 and the widget IS appearing within my app. &amp;nbsp;Maybe I'm deploying incorrectly? &amp;nbsp;Have you tested the widget in 2.3?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 14:12:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329088#M8683</guid>
      <dc:creator>BillSpiking__GISP</dc:creator>
      <dc:date>2017-03-23T14:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329089#M8684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...I haven't worked on it recently.&amp;nbsp; I believe I did notice this before.&amp;nbsp; I am thinking a simple hack would be to switch the widget icon to an blank image.&amp;nbsp; If I remember correctly, I was searching the UI components for a specific CSS tags that get injected by the WAB.&amp;nbsp; Problem is the Esri seems to change them between templates and versions.&amp;nbsp; I think the simplest way to handle it would be to switch the icon.&amp;nbsp; It will still occupy space on the header controller...but oh well.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 16:05:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329089#M8684</guid>
      <dc:creator>IanGrasshoff</dc:creator>
      <dc:date>2017-03-23T16:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329090#M8685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a problem Ian. &amp;nbsp;I think I'll try to make it an on screen widget and hide it using the code provided by &lt;A href="https://community.esri.com/migrated-users/3101"&gt;Robert Scheitlin, GISP&lt;/A&gt;‌ .&amp;nbsp;&lt;A href="https://community.esri.com/thread/187640-hide-widget-icon"&gt;https://community.esri.com/thread/187640-hide-widget-icon&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 17:08:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329090#M8685</guid>
      <dc:creator>BillSpiking__GISP</dc:creator>
      <dc:date>2017-03-23T17:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329091#M8686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's great, do you plan to fork my repo?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 17:13:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329091#M8686</guid>
      <dc:creator>IanGrasshoff</dc:creator>
      <dc:date>2017-03-23T17:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329092#M8687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tried this on 2.3 and it was not letting me add the widget to the map and configure it. I just changed the name of the folder from "esri-wab-widget-google-analytics-master" to "GoogleAnalytics" in the&amp;nbsp;WebAppBuilderForArcGIS\client\stemapp\widgets folder and all seams to be working now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 17:14:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329092#M8687</guid>
      <dc:creator>StanMcShinsky</dc:creator>
      <dc:date>2017-03-23T17:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329093#M8688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't tested yet, but I don't think any changes&amp;nbsp;will need to be made to your code. &amp;nbsp;Just redeploying as on screen widget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2017 12:54:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329093#M8688</guid>
      <dc:creator>BillSpiking__GISP</dc:creator>
      <dc:date>2017-03-24T12:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329094#M8689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to use Google Analytics to track widget usage rather than paste the tracking code into the index.html of of the WebApp. I've see Rene's post above, however some time has passed.... Is this possible?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2017 19:14:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329094#M8689</guid>
      <dc:creator>DanielChantlos1</dc:creator>
      <dc:date>2017-09-18T19:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Best Use Case for Google Analytics in WAB?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329095#M8690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have not had the need to track widget usage but since the widget manager uses events when a widget is opened then a developer could easily add widget usage to Ian's widget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2017 19:55:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/best-use-case-for-google-analytics-in-wab/m-p/329095#M8690</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-09-18T19:55:47Z</dc:date>
    </item>
  </channel>
</rss>

