<?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: NavToobar Deactivate in WAB question in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178237#M4976</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I would have thought that you would have seen an error in the web console saying that "map" is undefined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1447792609585455 jive_text_macro" data-renderedposition="113_8_913_16" jivemacro_uid="_1447792609585455"&gt;&lt;P&gt;navToolbar = new&lt;STRONG&gt; &lt;/STRONG&gt;Navigation(this.map);&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Nov 2015 20:36:59 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2015-11-17T20:36:59Z</dc:date>
    <item>
      <title>NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178229#M4968</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;&lt;/P&gt;&lt;P&gt;I have a quick question about deactivating the navtoolbar (navToolbar.deactivate();) on a panel close in webapp builder. I can seem to tweak the attached widget to work.&amp;nbsp; The functionality is all there, but it stays live when I exit out of the widget.&amp;nbsp; I've looked at how the draw widget deactivates with no luck.&amp;nbsp; Any suggestions would be greatly appreacited!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best as always,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 17:47:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178229#M4968</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-12T17:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178230#M4969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; You have some very confusing code in your widget.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;You have var navToolbar = new Navigation(this.map); three times in your code (line 82, 94, and 106) ???&lt;/LI&gt;&lt;LI&gt;When you use var navToolbar inside the startup function, that make navToolbar as private variable to the scope of the startup function and your onClose function can not access it using this.navToolbar.&lt;/LI&gt;&lt;LI&gt;Why are you doing all the domConstruct stuff in the startup function and not just putting all the html element you need in the Widget.html?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to have a global var called navToolbar then you add a line like this right after name: 'sNavigation',&lt;/P&gt;&lt;P&gt;navToolbar: null, then in your startup function you do:&lt;/P&gt;&lt;P&gt;this.navToolbar = new Navigation(this.map);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 19:47:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178230#M4969</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-12T19:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178231#M4970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the reply!&amp;nbsp; I apologize for the messy code.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should have used a global variable for navToolbar all along.&amp;nbsp; I played around with: &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;navToolbar = new Navigation(this.map) but since it was working, I wasn't to keen on tweaking too much yet.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thanks for the tip about moving the domConstruct stuff over to the widget.html.&amp;nbsp; I'll most definitely do that.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thank you as well for the info about narToolbar being a private variable.&amp;nbsp; I'm showing how new I am to this!&amp;nbsp; It make sense now why the onClose function can't see &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;navToolbar.deactivate().&amp;nbsp; I'll use your suggestions and see what happens!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thanks again,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Stephen&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 20:08:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178231#M4970</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-12T20:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178232#M4971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If this answered you question then don't forget to mark this thread as answered. To do this you have to open the thread (you can not see the correct answer link from inside your inbox) and then you will see the green star with correct answer link. Just click that link on the thread that answered your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 16:44:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178232#M4971</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-13T16:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178233#M4972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert!&amp;nbsp; I now see how weird my code was working.&amp;nbsp; So, I'm breaking out the &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;domConstruct stuff over to the widget.html now.&amp;nbsp; After that, I'll try to determine the pointer to the button DOM to run the original navtoolbar. As soon as it's running, I'll make sure to mark the question as answered.&amp;nbsp; If it's OK, I'd like to keep it open for a bit, just in case.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Stephen&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 18:06:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178233#M4972</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-13T18:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178234#M4973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; When working with templated widget like in WAB the Widget.html contains all your dom elements written in standard html and you can access then using the dojo-data-attach-point property name given to that dojo/html element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I.e. &amp;lt;div data-dojo-attach-point="tabSearch"&amp;gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in your Widget.js you would use this.tabSearch to access that div element.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Nov 2015 19:36:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178234#M4973</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-14T19:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178235#M4974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Robert.&amp;nbsp; That makes sense to me!&amp;nbsp; I recreated the zoomIn button in the widget.html with data-dojo-attach-point="zoomIn".&amp;nbsp; Looks good!&amp;nbsp; Now I'm focusing on just the zoom in part first.&amp;nbsp; I'm trying to rework the original navtoolbar code to work with webapp builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; navToolbar &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;new&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="typ" style="color: #000000;"&gt;Navigation&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;map&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;);&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; on&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;navToolbar&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="str" style="color: #dd1144;"&gt;"onExtentHistoryChange"&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; extentHistoryChangeHandler&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;);&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; registry&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;byId&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #dd1144;"&gt;"zoomin"&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;).&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;on&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #dd1144;"&gt;"click"&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;function&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;()&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;{&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; navToolbar&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;activate&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="typ" style="color: #000000;"&gt;Navigation&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;ZOOM_IN&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;);&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;});&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reworked&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; navToolbar = &lt;STRONG&gt;new&lt;/STRONG&gt;Navigation(map);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; on(this.zoomIn, 'click', function(evt){&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; navToolbar.activate(Navigation.ZOOM_IN);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No error when I run the widget, but it definitely is not right!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2015 20:25:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178235#M4974</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-17T20:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178236#M4975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's some small tweaks, but still not there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2015 20:35:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178236#M4975</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-17T20:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178237#M4976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I would have thought that you would have seen an error in the web console saying that "map" is undefined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1447792609585455 jive_text_macro" data-renderedposition="113_8_913_16" jivemacro_uid="_1447792609585455"&gt;&lt;P&gt;navToolbar = new&lt;STRONG&gt; &lt;/STRONG&gt;Navigation(this.map);&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2015 20:36:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178237#M4976</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-17T20:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178238#M4977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's where I'm currently at in JavaScript:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define([&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'dojo/_base/declare', &lt;/P&gt;&lt;P&gt;&amp;nbsp; 'dojo/_base/lang', &lt;/P&gt;&lt;P&gt;&amp;nbsp; 'jimu/BaseWidget',&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'dojo/on',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'dijit/registry',&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'esri/toolbars/navigation'&lt;/P&gt;&lt;P&gt;],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function(declare, lang, BaseWidget, Navigation, registry) {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var clazz = declare([BaseWidget], {&lt;/P&gt;&lt;P&gt;&amp;nbsp; name: 'sNavigation',&lt;/P&gt;&lt;P&gt;&amp;nbsp; navToolbar: null,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; startup: function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.navToolbar = new Navigation(this.map);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; registry.byId("zoomIn").on("click", function () {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; navToolbar.activate(Navigation.ZOOM_IN);&lt;/P&gt;&lt;P&gt;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp; return clazz;&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTML:&lt;/P&gt;&lt;P&gt;&amp;lt;div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;label&amp;gt;${nls.selectNavigation}&amp;lt;/label&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="button" value="Publish Data" id="zoomIn" data-dojo-attach-event="onclick:_onPublishClick"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span data-dojo-attach-point="pubInfoNode"&amp;gt;&amp;lt;/span&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting more lost by the day.&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;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 21:43:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178238#M4977</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-23T21:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178239#M4978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OK, I see you missed the concept that data-dojo-attach-point is the hook back to your templated widgets html component. Also you need to immediately grasp the concept that your requires (i.e. 'jimu/BaseWidget' and it associated var BaseWidget) have to match in order of listing identically. Example: dojo/_base/declare &amp;gt; declare, dojo/_base/lang &amp;gt; lang, jimu/BaseWidget &amp;gt; BaseWidget, dojo/on &amp;gt; on, esri/toolbars/navigation &amp;gt; Navigation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Widget.js:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;define([
&amp;nbsp; 'dojo/_base/declare',
&amp;nbsp; 'dojo/_base/lang',
&amp;nbsp; 'jimu/BaseWidget',
&amp;nbsp; 'dojo/on',
&amp;nbsp; 'esri/toolbars/navigation'
],

function(declare, lang, BaseWidget, on, Navigation) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var clazz = declare([BaseWidget], {
&amp;nbsp; name: 'Navigation',
&amp;nbsp; navToolbar: null,

&amp;nbsp; startup: function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; this.navToolbar = new Navigation(this.map);
&amp;nbsp;&amp;nbsp;&amp;nbsp; this.own(on(this.zoomIn, 'click', lang.hitch(this, function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.navToolbar.activate(Navigation.ZOOM_IN);
&amp;nbsp;&amp;nbsp;&amp;nbsp; })));
&amp;nbsp; }

&amp;nbsp; });
&amp;nbsp; return clazz;
});&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Widget.html:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;div&amp;gt;
&amp;nbsp; &amp;lt;label&amp;gt;${nls.selectNavigation}&amp;lt;/label&amp;gt;
&amp;nbsp; &amp;lt;div&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="button" value="Zoom In" data-dojo-attach-point="zoomIn"&amp;gt;
&amp;nbsp; &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is your widget based on the code you had so far corrected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:08:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178239#M4978</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T09:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178240#M4979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&amp;nbsp; Got it, &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;match in order of listing!&amp;nbsp; Now I remember that rule from the pre-webapp builder use of ArcGIS JavaScript API.&amp;nbsp; I should have known that!&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I'll take a shot at navToolbar.deactivate() onClose next.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Stephen&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 22:37:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178240#M4979</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-23T22:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178241#M4980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm 99 percent of the way there with the Navigation widget.&amp;nbsp; It now deactivates onclose, and I added in the remaining navigation functions.&amp;nbsp; The last thing I'm trying to accomplish is to have the buttons change color when selected.&amp;nbsp; I figured that jQuery was the best approach.&amp;nbsp; What I have below works in JSFiddle, but not in WAB Developer.&amp;nbsp; If you have a second, do you see what I'm missing or doing wrong?&amp;nbsp; Also, once this is done, I'd like to post this widget to the custom widget resource section of GeoNet if that's OK.&amp;nbsp; Thanks again!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;JS:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;define([&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'dojo/_base/declare',&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'dojo/_base/lang',&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'jimu/BaseWidget',&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'dojo/on',&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'esri/toolbars/navigation',&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; 'jimu/loaderplugins/jquery-loader!&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fcode.jquery.com%2Fjquery-git1.min.js" rel="nofollow" target="_blank"&gt;https://code.jquery.com/jquery-git1.min.js&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;],&lt;/P&gt;&lt;P&gt;function(declare, lang, BaseWidget, on, Navigation, $) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var clazz = declare([BaseWidget], {&lt;/P&gt;&lt;P&gt;&amp;nbsp; name: 'Navigation',&lt;/P&gt;&lt;P&gt;&amp;nbsp; baseClass: 'widget-Navigation',&lt;/P&gt;&lt;P&gt;&amp;nbsp; navToolbar: null,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; startup: function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.navToolbar = new Navigation(this.map);&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.own(on(this.zoomIn, 'click', lang.hitch(this, function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.navToolbar.activate(Navigation.ZOOM_IN);&lt;/P&gt;&lt;P&gt;&amp;nbsp; })));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.own(on(this.zoomOut, 'click', lang.hitch(this, function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.navToolbar.activate(Navigation.ZOOM_OUT);&lt;/P&gt;&lt;P&gt;&amp;nbsp; })));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.own(on(this.zoomPrevious, 'click', lang.hitch(this, function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.navToolbar.zoomToPrevExtent();&lt;/P&gt;&lt;P&gt;&amp;nbsp; })));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.own(on(this.zoomNext, 'click', lang.hitch(this, function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp; this.navToolbar.zoomToNextExtent();&lt;/P&gt;&lt;P&gt;&amp;nbsp; })));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; $('.main .btn').click(function (evt) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; $('.selected').not(this).removeClass('selected');&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(this).toggleClass('selected');&lt;/P&gt;&lt;P&gt;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(document).click(function () {&lt;/P&gt;&lt;P&gt;&amp;nbsp; $('.main .btn').removeClass('selected');&lt;/P&gt;&lt;P&gt;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; onClose: function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; this.navToolbar.deactivate();&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp; return clazz;&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;HTML:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div class='main'&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;label&amp;gt;&amp;lt;b&amp;gt;${nls.selectNavigation}&amp;lt;/b&amp;gt;&amp;lt;/label&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div data-dojo-attach-point="zoomIn" class='btn'&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img src='widgets/sNavigation/images/zoom-in.png' style='width:35px; height:35px;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; margin:5px;'&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/img&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div data-dojo-attach-point="zoomOut" class='btn'&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img src='widgets/sNavigation/images/zoom-out.png' style='width:35px; height:35px;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; margin:5px;'&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/img&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div data-dojo-attach-point="zoomPrevious" class='btn'&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img src='widgets/sNavigation/images/zoom-previous.png' style='width:35px; height:35px;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; margin:5px;'&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/img&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div data-dojo-attach-point="zoomNext" class='btn'&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img src='widgets/sNavigation/images/zoom-next.png' style='width:35px; height:35px;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; margin:5px;'&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/img&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;CSS:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.widget-Navigation .selected {&lt;/P&gt;&lt;P&gt;&amp;nbsp; color: rgba(255, 255, 255);&lt;/P&gt;&lt;P&gt;&amp;nbsp; background-color: #999;&lt;/P&gt;&lt;P&gt;&amp;nbsp; background-color: rgba(0, 0, 0, 0.4);&lt;/P&gt;&lt;P&gt;&amp;nbsp; width: 45px;&lt;/P&gt;&lt;P&gt;&amp;nbsp; height: 45px;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;.widget-Navigation {&lt;/P&gt;&lt;P&gt;&amp;nbsp; font-size:medium;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;.widget-Navigation .btn{&lt;/P&gt;&lt;P&gt;&amp;nbsp; background-color: #ccc;&lt;/P&gt;&lt;P&gt;&amp;nbsp; background-color: rgba(0, 0, 0, 0.2);&lt;/P&gt;&lt;P&gt;&amp;nbsp; border: 1px solid #000000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; border: 1px solid rgba(0, 0, 0, 0.4);&lt;/P&gt;&lt;P&gt;&amp;nbsp; width: 45px;&lt;/P&gt;&lt;P&gt;&amp;nbsp; height: 45px;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;.widget-Navigation .btn:hover{&lt;/P&gt;&lt;P&gt;&amp;nbsp; color: rgba(255, 255, 255);&lt;/P&gt;&lt;P&gt;&amp;nbsp; background-color: #999;&lt;/P&gt;&lt;P&gt;&amp;nbsp; background-color: rgba(0, 0, 0, 0.4);&lt;/P&gt;&lt;P&gt;&amp;nbsp; width: 45px;&lt;/P&gt;&lt;P&gt;&amp;nbsp; height: 45px;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 22:30:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178241#M4980</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-25T22:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178242#M4981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I don't like using a third party library when you already have dojo that can do the style and class stuff. I will update the code to show you how to do it with dojo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 00:30:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178242#M4981</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-26T00:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178243#M4982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Here is the widget using pure dojo. I don't think you should have a select state on the previous and next buttons as they are only monetary buttons not toggles like the zoom-in and out, so that is how my code works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 13:44:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178243#M4982</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-26T13:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178244#M4983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow!&amp;nbsp; Thanks Robert!!&amp;nbsp; I was able to get a jquery version working as well, but it's really messy!&amp;nbsp; Your version is much more straight forward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate your help!&amp;nbsp; I learned a bunch about the internal workings of WAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2015 18:22:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178244#M4983</guid>
      <dc:creator>StephenSchmidt2</dc:creator>
      <dc:date>2015-11-27T18:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: NavToobar Deactivate in WAB question</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178245#M4984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; You have marked this as "Assumed Answered". What "Assumed Answered" is for is when you have answered your own question or just feel that one particular reply is appropriate to mark as the answer to your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should mark one of the many replies as the correct answer. To do this you have to open the thread (you can not see the correct answer link from inside your inbox) and then you will see the green star with correct answer link on each reply in the thread. Just click that link on the thread that best answered your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Nov 2015 12:35:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/navtoobar-deactivate-in-wab-question/m-p/178245#M4984</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-28T12:35:34Z</dc:date>
    </item>
  </channel>
</rss>

