<?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: ArcGIS API &amp;amp; tooltip dialogs in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673067#M62734</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cool, that worked perfectly.&amp;nbsp; I had to include the !important for the background colour and the width properties.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Michael.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2011 07:10:28 GMT</pubDate>
    <dc:creator>MichaelO_Donnell2</dc:creator>
    <dc:date>2011-07-12T07:10:28Z</dc:date>
    <item>
      <title>ArcGIS API &amp;amp; tooltip dialogs</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673065#M62732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What is the best way to change the layout and style of the tooltips that appear when adding points to the map?&amp;nbsp; To change the message, I can use the&amp;nbsp; following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;esri.bundle.toolbars.draw.complete = "abc"&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Michael.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 09:37:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673065#M62732</guid>
      <dc:creator>MichaelO_Donnell2</dc:creator>
      <dc:date>2011-07-11T09:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS API &amp; tooltip dialogs</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673066#M62733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You're talking about the tooltip that follows the mouse cursor when a tool from a drawing toolbar is active? If you want to change the appearance of those tooltips, you can do with with css and the .map .tooltip class. Here's the default css:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.map .tooltip {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-color: white;
&amp;nbsp;&amp;nbsp;&amp;nbsp; border: 1px solid #7EABCD;
&amp;nbsp;&amp;nbsp;&amp;nbsp; border-radius: 4px 4px 4px 4px;
&amp;nbsp;&amp;nbsp;&amp;nbsp; font-size: 9pt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 5px;
&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 100px;
&amp;nbsp;&amp;nbsp;&amp;nbsp; z-index: 9999;
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You might need to specify !important to override certain styles...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:24:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673066#M62733</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2021-12-12T04:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS API &amp; tooltip dialogs</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673067#M62734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cool, that worked perfectly.&amp;nbsp; I had to include the !important for the background colour and the width properties.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Michael.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 07:10:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673067#M62734</guid>
      <dc:creator>MichaelO_Donnell2</dc:creator>
      <dc:date>2011-07-12T07:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS API &amp; tooltip dialogs</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673068#M62735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there anyway to do this for the Home, Zoom in, Zoom Out, and Locate buttons?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2014 15:54:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcgis-api-amp-amp-tooltip-dialogs/m-p/673068#M62735</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2014-04-02T15:54:53Z</dc:date>
    </item>
  </channel>
</rss>

