<?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: Tooltips for navigation toolbar in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346087#M31930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Take a look at this &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/86027-esri.bundle-problem-since-3.4?p=304314&amp;amp;viewfull=1#post304314"&gt;post&lt;/A&gt;&lt;SPAN&gt;. Does that example do what you're looking for?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jun 2013 00:46:13 GMT</pubDate>
    <dc:creator>KenBuja</dc:creator>
    <dc:date>2013-06-07T00:46:13Z</dc:date>
    <item>
      <title>Tooltips for navigation toolbar</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346084#M31927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there any way to customize tooltips for the Navigation Toolbar?&amp;nbsp; You can for the Draw toolbar per this thread: &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/79780-change-draw-toolbar-tooltip-text-bad-documentation?highlight=tooltip"&gt;http://forums.arcgis.com/threads/79780-change-draw-toolbar-tooltip-text-bad-documentation?highlight=tooltip&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And I saw the thread for customizing a general tooltip here: &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/51063-Customise-cursor-tooltip"&gt;http://forums.arcgis.com/threads/51063-Customise-cursor-tooltip&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But I'd really like to be able to customize tooltips for the various tools on the Nav toolbar.&amp;nbsp; Any ideas on the best way to go about it?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 19:58:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346084#M31927</guid>
      <dc:creator>AllisonAnderson</dc:creator>
      <dc:date>2013-06-05T19:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for navigation toolbar</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346085#M31928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is there any way to customize tooltips for the Navigation Toolbar?&amp;nbsp; You can for the Draw toolbar per this thread: &lt;A href="http://forums.arcgis.com/threads/79780-change-draw-toolbar-tooltip-text-bad-documentation?highlight=tooltip" rel="nofollow noopener noreferrer" target="_blank"&gt;http://forums.arcgis.com/threads/79780-change-draw-toolbar-tooltip-text-bad-documentation?highlight=tooltip&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And I saw the thread for customizing a general tooltip here: &lt;A href="http://forums.arcgis.com/threads/51063-Customise-cursor-tooltip" rel="nofollow noopener noreferrer" target="_blank"&gt;http://forums.arcgis.com/threads/51063-Customise-cursor-tooltip&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;But I'd really like to be able to customize tooltips for the various tools on the Nav toolbar.&amp;nbsp; Any ideas on the best way to go about it?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;strarting from this sample&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://developers.arcgis.com/en/javascript/samples/toolbar_navigation/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://developers.arcgis.com/en/javascript/samples/toolbar_navigation/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;you can add tooltips to the navigation toolbar using dijit.Tooltip&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
require(["dijit/Tooltip", "dojo/domReady!"], function(Tooltip){

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new Tooltip({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectId:["zoomin"],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label:"Zoom in"
&amp;nbsp;&amp;nbsp;&amp;nbsp; });

&amp;nbsp;&amp;nbsp; new Tooltip({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectId:["zoomout"],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label:"Zoom out"
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
});

&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;source&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://dojotoolkit.org/reference-guide/1.9/dijit/Tooltip.html" rel="nofollow noopener noreferrer" target="_blank"&gt;http://dojotoolkit.org/reference-guide/1.9/dijit/Tooltip.html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:18:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346085#M31928</guid>
      <dc:creator>DavideLimosani</dc:creator>
      <dc:date>2021-12-11T16:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for navigation toolbar</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346086#M31929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I had looked at the dijit documentation, but it doesn't really do what I wanted.&amp;nbsp; I really want a tooltip that follows the cursor, similar to the draw toolbar tools.&amp;nbsp; I'll keep playing around with Derek's code sample in the link I posted.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 17:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346086#M31929</guid>
      <dc:creator>AllisonAnderson</dc:creator>
      <dc:date>2013-06-06T17:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for navigation toolbar</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346087#M31930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Take a look at this &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/86027-esri.bundle-problem-since-3.4?p=304314&amp;amp;viewfull=1#post304314"&gt;post&lt;/A&gt;&lt;SPAN&gt;. Does that example do what you're looking for?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 00:46:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346087#M31930</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2013-06-07T00:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for navigation toolbar</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346088#M31931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Ken, but I'm not sure that helps.&amp;nbsp; The Draw toolbar has tooltips built in which you can customize, but there aren't any with the Navigation toolbar.&amp;nbsp; Unless I'm missing something.&amp;nbsp; I'm building a map for non-GIS map people, so to have a little descriptor would be nice.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 17:30:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346088#M31931</guid>
      <dc:creator>AllisonAnderson</dc:creator>
      <dc:date>2013-06-07T17:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for navigation toolbar</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346089#M31932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, you are right ..you cannot add tooltip to navigation toolbar as it is not built in. In order to achieve that you need to build of your own. And since you need tooltip for navigation tool, i think there are only 2 tools for which you need tooltip (ZOOMIN and ZOOMOUT). Since only these 2 tools draw graphics on map. So you can use the capabilities of Draw Toolbar to build these 2 tools, and keep the rest same.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 11:04:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346089#M31932</guid>
      <dc:creator>VinayBansal</dc:creator>
      <dc:date>2013-06-11T11:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for navigation toolbar</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346090#M31933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I ran into the same problem, here is what I did... I noticed the added class names, esriSimpleSliderIncrementButton and esriSimpleSliderDecrementButton by the widget, but alas no id attribute. Note, this example only shows the requires I used for the tooltips. There may be an easier way, I am very new to dojo, but it works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
require(["dojo/dom-attr","dojo/query"], function(domAttr,djQuery){

&amp;nbsp;&amp;nbsp; navToolbar = new Navigation(map);
&amp;nbsp;&amp;nbsp; // I put this after I initialized the toolbar
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; var zoomInDiv = djQuery(".esriSimpleSliderIncrementButton");
&amp;nbsp;&amp;nbsp; domAttr.set(zoomInDiv[0],"title","Zoom in");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; var zoomOutDiv = djQuery(".esriSimpleSliderDecrementButton");
&amp;nbsp;&amp;nbsp; domAttr.set(zoomOutDiv[0],"title","Zoom out");

});
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:18:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltips-for-navigation-toolbar/m-p/346090#M31933</guid>
      <dc:creator>GeoffreyJoseph1</dc:creator>
      <dc:date>2021-12-11T16:18:13Z</dc:date>
    </item>
  </channel>
</rss>

