<?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: I am having issues with the infowindow not showing up on click, despite the graphics having an infotemplate. Not sure if I am doing it incorrectly. in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66898#M5870</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim, &lt;/P&gt;&lt;P&gt;Thanks for the quick reply. Looking through your code I see how the buttons have the infowindow.show. I was under the impression that if you give a graphic an infotemplate when you create it that the default behavior is to show the infowindow when you click the graphic. Is this not the case. In the meantime I will keep fiddling with this code and see if I can get something similar to work in my program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Sep 2014 15:44:55 GMT</pubDate>
    <dc:creator>DarinBierbaum</dc:creator>
    <dc:date>2014-09-17T15:44:55Z</dc:date>
    <item>
      <title>I am having issues with the infowindow not showing up on click, despite the graphics having an infotemplate. Not sure if I am doing it incorrectly.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66896#M5868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is how I instantiate my graphic.&lt;/P&gt;&lt;P&gt;var pt = new esri.geometry.Point(jsonobj&lt;I&gt;.longitude, jsonobj&lt;I&gt;.latitude, this.map.spatialReference);&lt;/I&gt;&lt;/I&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sms = new esri.symbol.SimpleMarkerSymbol();&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var infoTemplate = new esri.InfoTemplate("&amp;lt;b&amp;gt;THIS IS INFO&amp;lt;/b&amp;gt;");&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var graphic = new esri.Graphic(pt, sms, infoTemplate);&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.graphics.add(graphic);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 15:32:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66896#M5868</guid>
      <dc:creator>DarinBierbaum</dc:creator>
      <dc:date>2014-09-17T15:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: I am having issues with the infowindow not showing up on click, despite the graphics having an infotemplate. Not sure if I am doing it incorrectly.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66897#M5869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Darin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe this example of a pop-up for a graphic can help you &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/timw1984/Nj765/" title="http://jsfiddle.net/timw1984/Nj765/"&gt;Button Popup 1 - JSFiddle&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 15:41:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66897#M5869</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-09-17T15:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: I am having issues with the infowindow not showing up on click, despite the graphics having an infotemplate. Not sure if I am doing it incorrectly.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66898#M5870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim, &lt;/P&gt;&lt;P&gt;Thanks for the quick reply. Looking through your code I see how the buttons have the infowindow.show. I was under the impression that if you give a graphic an infotemplate when you create it that the default behavior is to show the infowindow when you click the graphic. Is this not the case. In the meantime I will keep fiddling with this code and see if I can get something similar to work in my program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 15:44:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66898#M5870</guid>
      <dc:creator>DarinBierbaum</dc:creator>
      <dc:date>2014-09-17T15:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: I am having issues with the infowindow not showing up on click, despite the graphics having an infotemplate. Not sure if I am doing it incorrectly.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66899#M5871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my example you can also click on the graphic and the infowindow will show, you don't have to click the button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 16:06:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66899#M5871</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-09-17T16:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: I am having issues with the infowindow not showing up on click, despite the graphics having an infotemplate. Not sure if I am doing it incorrectly.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66900#M5872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this is where I am finding myself having trouble, because from my understanding the default behavior of a graphic with an infoTemplate is that on click it should display the infoWindow, but my graphics dont seem to do that &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt; . I will fiddle around with it some more and see if I can find out why. &lt;/P&gt;&lt;P&gt;Thanks again for your help! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 16:21:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/i-am-having-issues-with-the-infowindow-not-showing/m-p/66900#M5872</guid>
      <dc:creator>DarinBierbaum</dc:creator>
      <dc:date>2014-09-17T16:21:45Z</dc:date>
    </item>
  </channel>
</rss>

