<?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 Pop up specific window in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522670#M48709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I created a map (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://wa.water.usgs.gov/projects/clovercreek/hydrographs.esri.htm" rel="nofollow" target="_blank"&gt;http://wa.water.usgs.gov/projects/clovercreek/hydrographs.esri.htm&lt;/A&gt;&lt;SPAN&gt;), which has a drop down menu just above the map so a person can select a specific point on the map. I had created this map in Google Maps (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://wa.water.usgs.gov/projects/clovercreek/hydrographs.htm" rel="nofollow" target="_blank"&gt;http://wa.water.usgs.gov/projects/clovercreek/hydrographs.htm&lt;/A&gt;&lt;SPAN&gt;) and I got the drop down menu working like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As I looped through the text file added the points to the map, I added each point to an array:&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;var gmarkers = [];&lt;BR /&gt;&lt;BR /&gt;gmarkers&lt;I&gt; = marker;&lt;BR /&gt;i++;&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The dropdown menu called a function that opened the specific popup window:&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;function reveal_site(i){&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GEvent.trigger(gmarkers&lt;I&gt;, "click");&lt;BR /&gt;}&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to open the popup window for a specific site from a drop down menu in ESRI Javascript API?&lt;/SPAN&gt;&lt;/I&gt;&lt;/I&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 May 2013 17:32:29 GMT</pubDate>
    <dc:creator>RayJulich</dc:creator>
    <dc:date>2013-05-08T17:32:29Z</dc:date>
    <item>
      <title>Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522670#M48709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I created a map (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://wa.water.usgs.gov/projects/clovercreek/hydrographs.esri.htm" rel="nofollow" target="_blank"&gt;http://wa.water.usgs.gov/projects/clovercreek/hydrographs.esri.htm&lt;/A&gt;&lt;SPAN&gt;), which has a drop down menu just above the map so a person can select a specific point on the map. I had created this map in Google Maps (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://wa.water.usgs.gov/projects/clovercreek/hydrographs.htm" rel="nofollow" target="_blank"&gt;http://wa.water.usgs.gov/projects/clovercreek/hydrographs.htm&lt;/A&gt;&lt;SPAN&gt;) and I got the drop down menu working like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As I looped through the text file added the points to the map, I added each point to an array:&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;var gmarkers = [];&lt;BR /&gt;&lt;BR /&gt;gmarkers&lt;I&gt; = marker;&lt;BR /&gt;i++;&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The dropdown menu called a function that opened the specific popup window:&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;function reveal_site(i){&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GEvent.trigger(gmarkers&lt;I&gt;, "click");&lt;BR /&gt;}&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to open the popup window for a specific site from a drop down menu in ESRI Javascript API?&lt;/SPAN&gt;&lt;/I&gt;&lt;/I&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 May 2013 17:32:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522670#M48709</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2013-05-08T17:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522671#M48710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Any ideas? The map I'm trying to fix is wa.water.usgs.gov/projects/puyallupmonitoring/hydrographs.htm. The map has 3 points on it. When I get the map working correctly, it will have over 100 points on it. Here is the code that creates the infowindow for each point on the map:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
dojo.connect(map, "onClick", function(evt) {
 if(map.infoWindow.isShowing) { map.infoWindow.hide(); }
 click_handle = true;
 var g = evt.graphic&lt;I&gt;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
 map.infoWindow.setContent(g&lt;I&gt;.getContent());
 map.infoWindow.setTitle(g&lt;I&gt;.getTitle());
 map.infoWindow.show(evt.screenPoint,map.getInfoWindowAnchor(evt.screenPoint));
});&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As I add each point (graphic) to the map, I add each point to an array:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
graphic = new esri.Graphic(point, icon, attr, siteTemplate);
glayer.add(graphic);
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
gmarkers[nm] = graphic;
nm++;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The is a drop-down menu just above the map on the web page with the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;form style="margin-top:2px;margin-bottom:10px;" action&amp;gt;
 &amp;lt;select name="delta" onchange="javascript:reveal_site(delta.value)"&amp;gt;
&amp;nbsp; &amp;lt;option value=""&amp;gt;Select a well&amp;lt;/option&amp;gt;
&amp;nbsp; &amp;lt;option value="0"&amp;gt;Graphic 0&amp;lt;/option&amp;gt;
&amp;nbsp; &amp;lt;option value="1"&amp;gt;Graphic 1&amp;lt;/option&amp;gt;
&amp;nbsp; &amp;lt;option value="2"&amp;gt;Graphic 2&amp;lt;/option&amp;gt;
 &amp;lt;/select&amp;gt;
&amp;lt;/form&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When someone selects an item from the drop-down menu, I'd like that point's infowindow to pop up (I have a working Google Maps version - &lt;/SPAN&gt;&lt;A href="http://wa.water.usgs.gov/projects/clovercreek/hydrographs.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;http://wa.water.usgs.gov/projects/clovercreek/hydrographs.htm&lt;/A&gt;&lt;SPAN&gt;). Once the dtop-down menu item is selected, it calls a javascript function:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
function reveal_site(i) 
{&amp;nbsp; 
 dojo.connect(map, "onClick", function(evt) {
&amp;nbsp; if(map.infoWindow.isShowing) { map.infoWindow.hide(); }
&amp;nbsp; click_handle = true;
&amp;nbsp; var g = evt.graphic&lt;I&gt;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; map.infoWindow.setContent(g&lt;I&gt;.getContent());
&amp;nbsp; map.infoWindow.setTitle(g&lt;I&gt;.getTitle());
&amp;nbsp; map.infoWindow.show(evt.screenPoint,map.getInfoWindowAnchor(evt.screenPoint));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }); 
}
&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This doesn't work, but I didn't think it would. I would like to get code that would open the specific infowindow that was requested from the drop-down menu.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:47:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522671#M48710</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2021-12-11T22:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522672#M48711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another way of asking this question is, "Can I open an infowindow on the map without clicking on the map itself?" i.e. clicking on a button somewhere on the page or have a dropdown menu of all the points on the map and selecting one of the points from there.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jun 2013 20:05:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522672#M48711</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2013-06-04T20:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522673#M48712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ray,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a fiddle showing one approach for displaying a popup window without a mouse click on the map. In this sample there's a list of state names - click on the name and the popup for that feature will display. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://jsfiddle.net/5AcAK/"&gt;http://jsfiddle.net/5AcAK/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jun 2013 20:13:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522673#M48712</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2013-06-04T20:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522674#M48713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank&amp;nbsp; you. I'll take a look and give it a try.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jun 2013 20:29:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522674#M48713</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2013-06-04T20:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522675#M48714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kelly,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is right on track with what I need. I haven't been able to make it work for my specific page. This example uses a feature layer, whereas my map using a graphic layer - theirs layer comes from &lt;/SPAN&gt;&lt;A href="http://services.arcgis.com/"&gt;http://services.arcgis.com/&lt;/A&gt;&lt;SPAN&gt;..., mine is made up of several local text files.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was able to modify the example to use a drop-down menu instead of an unordered list (&amp;lt;ul&amp;gt;). Can I do a query on a graphic layer? The example does a query on a feature layer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 20:50:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522675#M48714</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2013-06-05T20:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522676#M48715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I did something similar for one of my maps with query results and clicking on a page element to show the infoWindow so my method might be similar to what you are looking for. Does the index of your graphic layer match the index of your drop down list? If it does, you should be able to use the index to tap into the geometry of the point to show your infoWindow. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code would be something like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;function reveal_site(i){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;point = gmarkers&lt;I&gt;.geometry;&lt;/I&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;point = esri.geometry.geographicToWebMercator(point);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;map.infoWindow.setTitle(gmarkers&lt;I&gt;.getTitle());&lt;/I&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;map.infoWindow.setContent(gmarkers&lt;I&gt;.getContent());&lt;/I&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;map.infoWindow.show(point, point);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is similar to what you have, but your code is triggered by a click event on the map while you want it to fire when something from the dropdown menu is selected. You should be able to call the function from the dropdown menu and use the index to decide which point to show the infoWindow for. Just be careful with your variable declarations- the gmarker variable may need to be global to work in this case. Also not sure how your graphics layer is set up exactly - I was using results from a query when I did this so the geometry of the points was returned. If I understand your file right, you may need to use the lat and long fields in place of the geometry.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this seems like it might be promising, I can try to go into more detail. Good luck, hope this is helpful!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 16:56:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522676#M48715</guid>
      <dc:creator>BrittneyGibbons</dc:creator>
      <dc:date>2013-06-06T16:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522677#M48716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you. Thank you. Thank you! This solution works great for me. Yes, I have to use the latitudes &amp;amp; longitudes instead of the geometry. Here is the code I used:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
function reveal_site(i) 
{
 var split = i.split(',');
 var index = split[0];
 var latitude = split[1];
 var longitude = split[2];&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; 
 if(index)
 {
&amp;nbsp; point = new esri.geometry.Point(longitude,latitude,new esri.SpatialReference({ wkid: 4326 }));
&amp;nbsp; point = esri.geometry.geographicToWebMercator(point);
&amp;nbsp; map.infoWindow.setTitle(gmarkers[index].getTitle());
&amp;nbsp; map.infoWindow.setContent(gmarkers[index].getContent());
&amp;nbsp; map.infoWindow.show(point, point);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
 }
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:47:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522677#M48716</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2021-12-11T22:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522678#M48717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Happy to hear that it worked!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 13:21:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522678#M48717</guid>
      <dc:creator>BrittneyGibbons</dc:creator>
      <dc:date>2013-06-07T13:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522679#M48718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am using API 3.5. I do have a little problem with my map (&lt;/SPAN&gt;&lt;A href="http://wa.water.usgs.gov/projects/puyallupmonitoring/hydrographs.htm"&gt;http://wa.water.usgs.gov/projects/puyallupmonitoring/hydrographs.htm&lt;/A&gt;&lt;SPAN&gt;). When I click on a point, on the map, the point's popup window opens, and the point is highlighted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]26062[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then, when a select a point from my dropdown menu, the correct popup window open, but the point isn't hightlighted on the map - the previous point that click on is highlighted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]26063[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I get points highlighted that are selected from my dropdown menu?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 14:40:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522679#M48718</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2013-07-19T14:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522680#M48719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How are you changing the symbology of the highlighted symbol on click? It should be possible to do something similar for the dropdown menu as well. Can you set the symbol of gmarker[index] to your highlight symbol in the function reveal site?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 16:15:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522680#M48719</guid>
      <dc:creator>BrittneyGibbons</dc:creator>
      <dc:date>2013-07-19T16:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522681#M48720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't do anything to explicitly change the symbology. I noticed that the point started to be highlighted once I upgraded by web page's code to use API 3.5. The point only seems to be highlighted when a user clicks on a point, but not when the user selects the point from the dropdown menu.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 13:16:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522681#M48720</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2013-07-26T13:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522682#M48721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Something else I noticed this morning is that when I click on a point, an infoWindow opens (Image 1), and click the X to close the infoWindow (Image 2), if I then open an infoWindow from the dropdown&amp;nbsp; menu, the last point that I clicked on will be hightlighted (Image 3).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]26250[/ATTACH] [ATTACH=CONFIG]26251[/ATTACH] [ATTACH=CONFIG]26252[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 14:13:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522682#M48721</guid>
      <dc:creator>RayJulich</dc:creator>
      <dc:date>2013-07-26T14:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up specific window</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522683#M48722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Could we see some additional code you used.&amp;nbsp; I"m trying to be able to click a row in a dynamically created table (i.e. from a query), and have it open the infowindow for that particular graphic.&amp;nbsp; I understand the concept behind map.infoWindow.show(point, point) but cannot figure out how to dump my geometry data into it from clicking the table.&amp;nbsp; Any additional hints would be great,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I did something similar for one of my maps with query results and clicking on a page element to show the infoWindow so my method might be similar to what you are looking for. Does the index of your graphic layer match the index of your drop down list? If it does, you should be able to use the index to tap into the geometry of the point to show your infoWindow. &lt;BR /&gt;&lt;BR /&gt;The code would be something like this:&lt;BR /&gt;&lt;BR /&gt;function reveal_site(i){&lt;BR /&gt;point = gmarkers&lt;I&gt;.geometry;&lt;BR /&gt;point = esri.geometry.geographicToWebMercator(point);&lt;BR /&gt;map.infoWindow.setTitle(gmarkers&lt;I&gt;.getTitle());&lt;BR /&gt;map.infoWindow.setContent(gmarkers&lt;I&gt;.getContent());&lt;BR /&gt;map.infoWindow.show(point, point);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;This is similar to what you have, but your code is triggered by a click event on the map while you want it to fire when something from the dropdown menu is selected. You should be able to call the function from the dropdown menu and use the index to decide which point to show the infoWindow for. Just be careful with your variable declarations- the gmarker variable may need to be global to work in this case. Also not sure how your graphics layer is set up exactly - I was using results from a query when I did this so the geometry of the points was returned. If I understand your file right, you may need to use the lat and long fields in place of the geometry.&lt;BR /&gt;&lt;BR /&gt;If this seems like it might be promising, I can try to go into more detail. Good luck, hope this is helpful!&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Aug 2013 03:14:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pop-up-specific-window/m-p/522683#M48722</guid>
      <dc:creator>aubinmaynard</dc:creator>
      <dc:date>2013-08-13T03:14:55Z</dc:date>
    </item>
  </channel>
</rss>

