<?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: Kill infoWindow in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466563#M43243</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;enableScrollWheelZoom isn't set via the Map's constructor. Try this after the map is created.&lt;BR /&gt;&lt;BR /&gt;map.enableScrollWheelZoom();&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That was my original code. That doesn't work either.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Mar 2011 20:00:37 GMT</pubDate>
    <dc:creator>ReneeMaxwell</dc:creator>
    <dc:date>2011-03-25T20:00:37Z</dc:date>
    <item>
      <title>Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466556#M43236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm using the editing dijits and I'd like to turn off the infoWindow. I have a query for related records that fires whenever a feature is selected, and this query then populates a form that I have built on the page. I do NOT need the infoWindow but I can't figure out how to turn it off.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 17:33:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466556#M43236</guid>
      <dc:creator>ReneeMaxwell</dc:creator>
      <dc:date>2011-03-25T17:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466557#M43237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When you create the map set the showInfoWindowOnClick option to false to disable the info window. Here's a code snippet that shows this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
map = new esri.Map("map", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extent: esri.geometry.geographicToWebMercator(new esri.geometry.Extent(-125.90, 44.60, -114.65, 50.22, new esri.SpatialReference({wkid:4326}))),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showInfoWindowOnClick:false
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:42:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466557#M43237</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T20:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466558#M43238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Kelly! I appreciate the tip. Unfortunately it didn't work. I added that to my init() function but the infoWindow still pops up.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 19:42:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466558#M43238</guid>
      <dc:creator>ReneeMaxwell</dc:creator>
      <dc:date>2011-03-25T19:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466559#M43239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;FWIW, I wonder if this is a related issue - I can't get my map to enable zooming with the scroll wheel either. It appears that my map settings are having no effect whatsoever.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
map = new esri.Map("map", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enableScrollWheelZoom: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showInfoWindowOnClick:false
});
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas as to why these settings are not being honored?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:42:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466559#M43239</guid>
      <dc:creator>ReneeMaxwell</dc:creator>
      <dc:date>2021-12-11T20:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466560#M43240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I re-read your initial post and this is because you are using the editor. The editor uses the info window to display attribute information. Can you tell me a bit about how you are using the editor, for example are you using it just to create new features - or are you using the toolbar etc? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks Kelly! I appreciate the tip. Unfortunately it didn't work. I added that to my init() function but the infoWindow still pops up.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 19:54:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466560#M43240</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2011-03-25T19:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466561#M43241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am not using the editor toolbar, but I am using the template picker. I'm using it to create new features and to edit feature attributes. However, most of the attributes are all housed in related business tables so I'm using a lot of custom code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't want to use the infoWindow for a couple of reasons. First, it's not big enough to edit all the fields I need to display. Second, it's location is related to the position of the feature on the screen, and this often means that it gets cut off if the feature is near the top of the screen.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 19:59:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466561#M43241</guid>
      <dc:creator>ReneeMaxwell</dc:creator>
      <dc:date>2011-03-25T19:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466562#M43242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;enableScrollWheelZoom isn't set via the Map's constructor. Try this after the map is created.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;map.enableScrollWheelZoom();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can find more details about map navigation here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jshelp_start.htm#jshelp/intro_navigation.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jshelp_start.htm#jshelp/intro_navigation.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;FWIW, I wonder if this is a related issue - I can't get my map to enable zooming with the scroll wheel either. It appears that my map settings are having no effect whatsoever.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
map = new esri.Map("map", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enableScrollWheelZoom: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showInfoWindowOnClick:false
});
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Any ideas as to why these settings are not being honored?&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:42:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466562#M43242</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T20:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466563#M43243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;enableScrollWheelZoom isn't set via the Map's constructor. Try this after the map is created.&lt;BR /&gt;&lt;BR /&gt;map.enableScrollWheelZoom();&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That was my original code. That doesn't work either.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 20:00:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466563#M43243</guid>
      <dc:creator>ReneeMaxwell</dc:creator>
      <dc:date>2011-03-25T20:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466564#M43244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;That was my original code. That doesn't work either.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You have to wait until the map is loaded for this to work, are you doing something like this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
dojo.connect(map, "onLoad", function() {
&amp;nbsp; map.enableScrollWheelZoom();
});
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:42:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466564#M43244</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T20:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466565#M43245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Although scrollWheelZoom should be enabled by default so perhaps there is something else going on in your case. If you run one of the samples can you use your mouse scrolling to zoom?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 20:05:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466565#M43245</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2011-03-25T20:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466566#M43246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That almost works. It will zoom once, but only once. Weird.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, the sample maps work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have to run and I'll be out of the office part of next week but I'll be troubleshooting this problem again when I return. And I still need help with the infoWindow:)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 20:07:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466566#M43246</guid>
      <dc:creator>ReneeMaxwell</dc:creator>
      <dc:date>2011-03-25T20:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466567#M43247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If the only thing you are using is the template picker to create features then you may want to take a look at the Editing without Editor sample. This &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/EN/webapi/javascript/arcgis/demos/ed/ed_feature_creation.html"&gt;sample &lt;/A&gt;&lt;SPAN&gt;shows how to use the template picker to add features and does not display the attribute inspector:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I am not using the editor toolbar, but I am using the template picker. I'm using it to create new features and to edit feature attributes. However, most of the attributes are all housed in related business tables so I'm using a lot of custom code.&lt;BR /&gt;.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 20:07:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466567#M43247</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2011-03-25T20:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466568#M43248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was just experiencing this same problem using the editor dijit with the attribute inspector displaying in a div instead of the info window.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; An empty info window kept popping up on screen.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; My solution was to set the following styles in my css stylesheet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#map_infowindow {
&amp;nbsp;&amp;nbsp;&amp;nbsp; display:none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; visibility:hidden;
}

.window {
&amp;nbsp;&amp;nbsp;&amp;nbsp; display:none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; visibility:hidden;
} &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:42:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466568#M43248</guid>
      <dc:creator>Kathleen_Crombez</dc:creator>
      <dc:date>2021-12-11T20:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466569#M43249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I was just experiencing this same problem using the editor dijit with the attribute inspector displaying in a div instead of the info window.&lt;BR /&gt; An empty info window kept popping up on screen.&lt;BR /&gt; My solution was to set the following styles in my css stylesheet.&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#map_infowindow {
&amp;nbsp;&amp;nbsp;&amp;nbsp; display:none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; visibility:hidden;
}

.window {
&amp;nbsp;&amp;nbsp;&amp;nbsp; display:none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; visibility:hidden;
} &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kathleen's solution seems to work the best.&amp;nbsp; Guaranteed to hide the window.&amp;nbsp; Unfortunately the CSS has changed.&amp;nbsp; This is what I used:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#map_root .esriPopup {
&amp;nbsp;&amp;nbsp;&amp;nbsp; display: none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; visibility: hidden;
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure if #map_root is always consistent as my div is #map and I wonder if it appends _root to the popup's container div.&amp;nbsp; So you may simply want to hide any div with the esriPopup class in your map div.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#map .esriPopup {
&amp;nbsp;&amp;nbsp;&amp;nbsp; display: none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; visibility: hidden;
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:42:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466569#M43249</guid>
      <dc:creator>DerivenC</dc:creator>
      <dc:date>2021-12-11T20:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Kill infoWindow</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466570#M43250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I do NOT need the infoWindow but I can't figure out how to turn it off.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you specified an infoTemplate for the featureLayer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;SPAN style="color: #4D4D4D; font-family: Lucida Grande;"&gt;The template that defines the content to display in the map info window when the user clicks on a feature. If not specified, the info window will not be displayed.&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;SPAN style="color: #4D4D4D; font-family: Lucida Grande;"&gt;&lt;BR /&gt;&lt;BR /&gt;If this is defined, then it will show when you click on the feature layer's features.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 13:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/kill-infowindow/m-p/466570#M43250</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2013-09-08T13:21:37Z</dc:date>
    </item>
  </channel>
</rss>

