<?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: Deferreds and Identify Task in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374740#M34788</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;perfect!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jan 2015 19:18:57 GMT</pubDate>
    <dc:creator>RobertKirkwood</dc:creator>
    <dc:date>2015-01-29T19:18:57Z</dc:date>
    <item>
      <title>Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374723#M34771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Asynchronous programming newbie question.&amp;nbsp; I need to run an identify task on a dynamic map service layer.&amp;nbsp; After I get the results of the identify, I need to do another operation before the results are sent to the popup.&amp;nbsp; I'll use that operation to format the infoTemplate. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I prevent the popup from displaying until I format it?&amp;nbsp; It seems that as soon as the result comes back, the dojo will display the popup with the returned records.&amp;nbsp; I think I need to chain the deferreds or create a deferred list, but I can't grok how it works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;function executeIdentifyTask(evt) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; identifyParams.geometry = evt.mapPoint;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; identifyParams.mapExtent = map.extent;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; var deferred = identifyTask.execute(identifyParams);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; deferred.addCallback(function(response) {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // response is an array of identify result objects&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Let's return an array of features.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return dojo.map(response, function(result) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var feature = result.feature;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(result.layerName === 'Tax Parcels'){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; if (blah.length&amp;gt;0) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; FORMAT CONTENT HERE&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var template = new esri.InfoTemplate("", "${Postal Address} &amp;lt;br/&amp;gt; Owner of record: ${First Owner Name}");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; feature.setInfoTemplate(template);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; else&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; FORMAT CONTENT DIFFERENT WAY HERE&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var template = new esri.InfoTemplate("", "${Different Stuff} &amp;lt;br/&amp;gt; Owner of record: ${Blah}");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; feature.setInfoTemplate(template);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; });&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(feature.attributes.PARCELID);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (result.layerName === 'Building Footprints'){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var template = new esri.InfoTemplate("", "Parcel ID: ${PARCELID}");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; feature.setInfoTemplate(template);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return feature;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // InfoWindow expects an array of features from each deferred&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // object that you pass. If the response from the task execution &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // above is not an array of features, then you need to add a callback&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // like the one above to post-process the response and return an&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // array of features.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.setFeatures([ deferred ]);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.show(evt.mapPoint);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2013 13:28:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374723#M34771</guid>
      <dc:creator>BrendanDwyer</dc:creator>
      <dc:date>2013-05-28T13:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374724#M34772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;A href="http://gis.stackexchange.com/questions/12407/how-to-identify-layers-from-multiple-arcgis-server-instances"&gt;Here's&lt;/A&gt;&lt;SPAN&gt; an example of using a DeferredList to await for the results of two different IdentifyTasks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2013 14:13:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374724#M34772</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2013-05-28T14:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374725#M34773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;A href="http://gis.stackexchange.com/questions/12407/how-to-identify-layers-from-multiple-arcgis-server-instances"&gt;Here's&lt;/A&gt; an example of using a DeferredList to await for the results of two different IdentifyTasks.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ken, thanks for the reply but I don't think it applies to my situation.&amp;nbsp; I need to do the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Set off an identify task&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For each record that comes back (in the result array), get the objectID and the layer id.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Create a feature layer (concatenating a set url string with the layer id)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Run the queryAttachemntInfos function on the feature layer and the objectID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Configure the infoTemplate for each record based on what comes back from queryAttachementInfos.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I think I need nested deferreds.&amp;nbsp; I attached a txt file to this post.&amp;nbsp; You need to change the extension from .txt to .html.&amp;nbsp; Where its going wrong is in the executeIdentifyTask function.&amp;nbsp; I'm trying to nest the deferreds but it doesn't look like I'm setting up the callback right.&amp;nbsp; Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2013 18:18:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374725#M34773</guid>
      <dc:creator>BrendanDwyer</dc:creator>
      <dc:date>2013-05-28T18:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374726#M34774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One option might be to just add the layers you want to query to your application as feature layers in Selection only mode. When you add each feature layer define the info template for that layer.&amp;nbsp; Note that in this example we don't have to query for attachment info because we've set showAttachments to true when defining the info template for the feature layer that has attachments. Then when you click the map you can use the feature layer's selectFeatures method to select the features of interest and display them in the popup. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a jsfiddle that shows this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://jsfiddle.net/Wav9r/"&gt;http://jsfiddle.net/Wav9r/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2013 21:52:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374726#M34774</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2013-05-28T21:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374727#M34775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;One option might be to just add the layers you want to query to your application as feature layers in Selection only mode. When you add each feature layer define the info template for that layer.&amp;nbsp; Note that in this example we don't have to query for attachment info because we've set showAttachments to true when defining the info template for the feature layer that has attachments. Then when you click the map you can use the feature layer's selectFeatures method to select the features of interest and display them in the popup. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here's a jsfiddle that shows this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://jsfiddle.net/Wav9r/"&gt;http://jsfiddle.net/Wav9r/&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kelly, thanks for posting.&amp;nbsp; I've actually implemented your solution as I've tried to work out the problem.&amp;nbsp; The hangup is that I have to run the identify over many, many layers (hundreds, actually.&amp;nbsp; Don't ask: Customer wants it this way....).&amp;nbsp; I'd have to add each feature layer individually and then specify an identify task for each, correct?&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to hold up the function from returning the feature until the queryattachmentinfo returns it's data?&amp;nbsp; I think I need to nest the deferreds, but as I said, I'm not tracking how to do it.&amp;nbsp; I've tried a couple of different ways and it's not working.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 May 2013 01:10:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374727#M34775</guid>
      <dc:creator>BrendanDwyer</dc:creator>
      <dc:date>2013-05-29T01:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374728#M34776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm not sure about the nested deferred, but as far as your infoTemplate content, I've been using a function on it, rather than just defining it like you have.&amp;nbsp; It gave me a lot finer control of it's behavior as opposed to hard coding it and it doesn't&amp;nbsp; try to format the information until the feature was returned from the identify.&amp;nbsp; I wanted the contents displayed as a table.&amp;nbsp; I have a lot of messy attribution, so there are lots of checks in my code to make sure there are values before I add it as a record in the table.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp; parcelInfoTemplate = new esri.InfoTemplate();
&amp;nbsp;&amp;nbsp; parcelInfoTemplate.setTitle("Parcel Information");
&amp;nbsp;&amp;nbsp; parcelInfoTemplate.setContent(parcelSetWindowContent);
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's my identify function that I have set to my map 'onClick'&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
function doIdentify(event){
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.hide();
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.graphics.clear();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; labelPt = event.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parcelIdentifyParams.geometry = event.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parcelIdentifyParams.mapExtent = map.extent;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var deferred = parcelIdentifyTask.execute(parcelIdentifyParams);
&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; deferred.addCallback(function(response){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var feature = response[0].feature;&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; showInfoWindow(feature,labelPt);&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; }
}
function showInfoWindow (feature, labelPt) {
&amp;nbsp;&amp;nbsp; feature.setInfoTemplate(parcelInfoTemplate);&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; map.infoWindow.setTitle("Parcel Information");
&amp;nbsp;&amp;nbsp; map.infoWindow.setContent(feature.getContent());
&amp;nbsp;&amp;nbsp; map.infoWindow.show(labelPt);&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; 
}

function parcelSetWindowContent(graphic) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var nameTest1 = graphic.attributes.NAME1;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var addressTest = graphic.attributes.SITEADDRES;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var addressTest2 = graphic.attributes.SITEADDRESS;//very freaky that some seem to have one 's' and other two
&amp;nbsp;&amp;nbsp;&amp;nbsp; var legalTest1 = graphic.attributes.LEGAL1;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var legalTest2 = graphic.attributes.LEGAL2;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var legalTest3 = graphic.attributes.LEGAL3;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var legalTest4 = graphic.attributes.LEGAL4;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var fullLegalString;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var twpRangeSecString;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var twpTest = graphic.attributes.TOWNSHIP;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var rngTest = graphic.attributes.RANGE;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var secTest = graphic.attributes.SECTION;
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (twpTest != 'undefined' &amp;amp;&amp;amp; twpTest != 'Null') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; twpRangeSecString = "TWP:" + graphic.attributes.TOWNSHIP;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (rngTest != 'undefined' &amp;amp;&amp;amp; rngTest != 'Null') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; twpRangeSecString = twpRangeSecString +&amp;nbsp; "&amp;nbsp; RNG:" + graphic.attributes.RANGE;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (secTest != 'undefined' &amp;amp;&amp;amp; secTest != 'Null') {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; twpRangeSecString = twpRangeSecString +&amp;nbsp; " SEC: " + graphic.attributes.SECTION;
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; var acreageTest = graphic.attributes.ACRES;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var buildingNameTest = graphic.attributes.BUILDING_NAME;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var bookTest = graphic.attributes.BOOK1;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pageTest = graphic.attributes.PAGE1;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var initString = "";//used to see if there is really any content in the attribute values 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //There is problem with Null being detected as a 4 character length string instead of just nothing
&amp;nbsp;&amp;nbsp;&amp;nbsp; //checking to see if the value is longer than 4 characters because of this
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; initTable = "&amp;lt;table id='infoWindowTable' data-dojo-type='dojox.grid.DataGrid' class='infoTable' &amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;"; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (nameTest1.length &amp;gt; 1) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initTable = initTable + "&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;b&amp;gt;Owner:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;" + nameTest1+ "&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initString = nameTest1;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (buildingNameTest) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (buildingNameTest.length &amp;gt; 4) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initTable = initTable + "&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;b&amp;gt;Building:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;" + buildingNameTest+ "&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initString = initString + buildingNameTest;
&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; if (addressTest) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (addressTest.length &amp;gt; 4) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initTable = initTable + "&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;b&amp;gt;Site Address:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;" + addressTest + "&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initString = initString + addressTest;
&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; if (addressTest2) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (addressTest2.length &amp;gt; 4) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initTable = initTable + "&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;b&amp;gt;Site Address:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;" + addressTest2 + "&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;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; initString = initString + addressTest2;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; initTable = initTable + "&amp;lt;/table&amp;gt;&amp;lt;br&amp;gt;&amp;lt;a id='btnZoom'&amp;nbsp; onClick='zoomTo();'&amp;gt;Zoom To&amp;lt;/a&amp;gt;";
&amp;nbsp;&amp;nbsp; 
&amp;nbsp; //some counties provided so little information in a field that there wasn't enough information to put 
&amp;nbsp; //in an infoWindow
&amp;nbsp; if (initString.length &amp;lt; 3) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initTable = "Limited data provided, see side panel.";
&amp;nbsp; }
&amp;nbsp; return initTable;
} 
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe it will at least give you some ideas of another way to approach your problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:20:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374728#M34776</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2021-12-11T17:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374729#M34777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tracy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for replying.&amp;nbsp; I thought about doing a check before the infowindow.show method.&amp;nbsp; I don't think that would work.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is that I call the featureLayer.queryAttachmentInfos function inside the deferred.addCallback function.&amp;nbsp; I call this so that I can get the attachement url and create the feature.template with it.&amp;nbsp; I want to display the attached photos in the infowindow.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For some reason, the callback function returns the feature before the queryAttachmentInfo returns.&amp;nbsp; I don't understand this.&amp;nbsp; It's inside the callback function.&amp;nbsp; Should everything inside that function operate synchronously?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I can get the callback function to wait for the queryAttachmentInfo to finish, I'd be all set.&amp;nbsp; I don't think I can run a test before the onshow method because there might be more than one queryAttachmentInfo method to fire (if more than one features are clicked).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Jun 2013 16:47:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374729#M34777</guid>
      <dc:creator>BrendanDwyer</dc:creator>
      <dc:date>2013-06-02T16:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374730#M34778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kelly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the deferred method for identify task. i have two services i would like to create tasks for and use info templates for each sub layer. The problem i am having is that it will only identify the last service in the code. in my main application it will identify the 1st layer i turn on that is in the first service. however, when i turn on layers in the second service it will no longer identify layers in the first service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created jsfiddle that is a simplified version of my application. Do you have any idea what i am doing wrong here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I am using this method so i can identify grids/rasters...&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/Mr_Kirkwood/ony4obwk/" style="text-align: right; line-height: 1.5;" title="http://jsfiddle.net/Mr_Kirkwood/ony4obwk/"&gt;Edit fiddle - JSFiddle&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 16:40:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374730#M34778</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-23T16:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374731#M34779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's only one info window so whichever identify finishes last will overwrite the first one with the content. I think instead you'll want to use dojo/promises/all to determine when both identify tasks have finished and then set the info window content. We have a sample in the help that shows how to work with multiple deferreds and dojo/promises/all here: &lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/jssamples/query_deferred_list.html" title="https://developers.arcgis.com/javascript/jssamples/query_deferred_list.html"&gt;Manage results from multiple queries | ArcGIS API for JavaScript&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:04:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374731#M34779</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2015-01-23T18:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374732#M34780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I will check out that example and let you know if i get it figured out. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:43:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374732#M34780</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-23T18:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374733#M34781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kelly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Quick question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i keep the identify tasks set up the way i have them and then use the promise?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 19:36:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374733#M34781</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-23T19:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374734#M34782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a fiddle that shows one way to accomplish this: &lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/rg7zq91q/" title="http://jsfiddle.net/rg7zq91q/"&gt;Edit fiddle - JSFiddle&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:23:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374734#M34782</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2015-01-23T20:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374735#M34783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kelly,&lt;/P&gt;&lt;P&gt;Thanks so much. This is perfect. once again you have help me get over a major frustrating wall!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:29:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374735#M34783</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-23T20:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374736#M34784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kelly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello. I was wondering can the mediaInfos that works with the PopupTemplate work with the infotemplate in the example you helped me with?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this example:&lt;/P&gt;&lt;P&gt;&lt;A href="http://developers.arcgis.com/javascript/sandbox/sandbox.html?sample=query_dojochart"&gt;http://developers.arcgis.com/javascript/sandbox/sandbox.html?sample=query_dojochart&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to be able to insert a chart. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 17:42:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374736#M34784</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-29T17:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374737#M34785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Sure you can just replace the InfoTemplate with esri/dijit/PopupTemplate and then you can use mediaquery. Here's an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; var taxParcelTemplate = new PopupTemplate({
&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; title: "{Postal Address}",
&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; description: "Owner of record: {First Owner Name}",
&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; mediaInfos:[{
&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;&amp;nbsp;&amp;nbsp; type: "barchart",
&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;&amp;nbsp;&amp;nbsp; value:{
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fields:["Current Assessed Value", "Current Summer Taxes Owed", "Current Taxable Value", "Current Winter Taxes Owed"]
&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;&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;&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; });
&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; feature.setInfoTemplate(taxParcelTemplate);&amp;nbsp;&amp;nbsp; &lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:20:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374737#M34785</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T17:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374738#M34786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kelly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it would have been a snake it would have bit me! Sheesh. Thanks again. I think I get caught up in looking at too many examples instead of just looking at what I already have. Thanks again for your quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are interested in what I am doing here is a link to a draft.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;http://uwmaps.wygisc.org/WRDS/index.html#&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the very last button on the right bottom has some identify tools the last layer called PRISM data 30yr precipitation is the one I used with the charting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert Kirkwood&lt;/P&gt;&lt;P&gt;Wyoming Geographic Information Science Center&lt;/P&gt;&lt;P&gt;University of Wyoming  |  Agriculture C, Rm 321&lt;/P&gt;&lt;P&gt;Phone: (307) 766-6281  |  Cell: (307) 399-8094&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 19:14:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374738#M34786</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-29T19:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374739#M34787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;p.s. not the last button but the one above the globe Icon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert Kirkwood&lt;/P&gt;&lt;P&gt;Wyoming Geographic Information Science Center&lt;/P&gt;&lt;P&gt;University of Wyoming  |  Agriculture C, Rm 321&lt;/P&gt;&lt;P&gt;Phone: (307) 766-6281  |  Cell: (307) 399-8094&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 19:16:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374739#M34787</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-29T19:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: Deferreds and Identify Task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374740#M34788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;perfect!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 19:18:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/deferreds-and-identify-task/m-p/374740#M34788</guid>
      <dc:creator>RobertKirkwood</dc:creator>
      <dc:date>2015-01-29T19:18:57Z</dc:date>
    </item>
  </channel>
</rss>

