I am updating a webApp using ArcGIS Javscript API 2.1 I have an infoWindow with tabs which shows all of the features in my map. I built it based on this example: http://resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/help/jssamples_start.htm#jssamples/identify_drilldown.html
I would like to have the infoWindow open with the tab that matches the selected feature on top (or, selected). Currently, in my map and in the above example, the tab that opens is the tab last clicked during the preceding instance of the infoWindow.
I see there is a 'selected' property for tab containers. I can set it for the initial layout of the infoWindow onload in HTML, but setting it in the Javascript code does not seem to work..
Does anyone have an idea how I may do this? Thanks,
-
off-topic, but that site you referenced looks like it's scraping the Esri sample site, which is probably the more authoritative place to obtain samplesStephen Lead– Stephen Lead2012年09月25日 02:11:46 +00:00Commented Sep 25, 2012 at 2:11
-
yes Stephen you're right, it is derived from here: [link] resources.esri.com/help/9.3/arcgisserver/apis/javascript/arcgis/… [/link]JasonBK– JasonBK2012年09月25日 15:09:01 +00:00Commented Sep 25, 2012 at 15:09
1 Answer 1
Use .selectChild().
In your example, if I click the map to identify, then run this in the console:
dijit.byId("tabs").selectChild("parcelTab")
The tab container in the info window switches to the "Tax Parcels tab. Running:
dijit.byId("tabs").selectChild("bldgTab")
Switches back to the "Buildings" tab.
-
1Hello, I deleted my old comment. Thank you, now that I placed this function correctly, it works perfectly.JasonBK– JasonBK2012年09月26日 16:51:03 +00:00Commented Sep 26, 2012 at 16:51
-
Glad it worked :).Derek Swingley– Derek Swingley2012年09月26日 17:46:13 +00:00Commented Sep 26, 2012 at 17:46
Explore related questions
See similar questions with these tags.