<?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: Hover over feature layer tooltip not showing up in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704954#M65602</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your issue is that you add the circle to your map.graphics layer, which is also where the highlightGraphics are added. When you add the mouse out event listener with this line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14120221892589765" jivemacro_uid="_14120221892589765" modifiedtitle="true"&gt;
&lt;P&gt;map.graphics.on("mouse-out", closeDialog);&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that also applies to the circle graphic you've added. And in the closeDialog function, you clear the map.graphics layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should add the circle to a different graphics layer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Sep 2014 20:24:29 GMT</pubDate>
    <dc:creator>KenBuja</dc:creator>
    <dc:date>2014-09-29T20:24:29Z</dc:date>
    <item>
      <title>Hover over feature layer tooltip not showing up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704951#M65599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to add hover over tooltip to my application, but once I add code for tooltip, the dialog&amp;nbsp; is not showing up and now even the circle that is used to&amp;nbsp; draw a buffer and select features disappears, here is what I have so far, if anyone take a look and point out what is missing or needs to be corrected, that will be great, thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/JSSR/b2cjcdoc/"&gt;http://jsfiddle.net/JSSR/b2cjcdoc/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 19:32:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704951#M65599</guid>
      <dc:creator>JssrRR</dc:creator>
      <dc:date>2014-09-29T19:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hover over feature layer tooltip not showing up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704952#M65600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You left off some modules, which were caught in the &lt;A href="https://getfirebug.com/"&gt;Firebug&lt;/A&gt; window&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="16418" alt="firebug.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/16418_firebug.png" style="width: 620px; height: 426px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the updated &lt;A href="http://jsfiddle.net/b2cjcdoc/1/"&gt;Fiddle&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 19:47:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704952#M65600</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2014-09-29T19:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hover over feature layer tooltip not showing up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704953#M65601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ken,&lt;/P&gt;&lt;P&gt;Thanks for looking at my application and the quick reply, the tooltip is showing up, but the circle still disappears, is there a way where we can have the circle to stay up once it selects the features, so the user can hover around different points to see the FacilityIDs .&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 20:05:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704953#M65601</guid>
      <dc:creator>JssrRR</dc:creator>
      <dc:date>2014-09-29T20:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Hover over feature layer tooltip not showing up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704954#M65602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your issue is that you add the circle to your map.graphics layer, which is also where the highlightGraphics are added. When you add the mouse out event listener with this line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14120221892589765" jivemacro_uid="_14120221892589765" modifiedtitle="true"&gt;
&lt;P&gt;map.graphics.on("mouse-out", closeDialog);&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that also applies to the circle graphic you've added. And in the closeDialog function, you clear the map.graphics layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should add the circle to a different graphics layer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 20:24:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704954#M65602</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2014-09-29T20:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Hover over feature layer tooltip not showing up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704955#M65603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the updated &lt;A href="http://jsfiddle.net/b2cjcdoc/2/"&gt;Fiddle&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 20:42:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704955#M65603</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2014-09-29T20:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Hover over feature layer tooltip not showing up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704956#M65604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ken,&lt;/P&gt;&lt;P&gt;Thanks for the help and explaining the problem, that helps a lot to understand why it I was not getting the desired results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 20:50:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hover-over-feature-layer-tooltip-not-showing-up/m-p/704956#M65604</guid>
      <dc:creator>JssrRR</dc:creator>
      <dc:date>2014-09-29T20:50:52Z</dc:date>
    </item>
  </channel>
</rss>

