<?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: Related table in Attribute Inspector in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728074#M67577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good stuff, John. You got me out of a hell of a pickle. Appreciate all the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Aug 2014 17:08:16 GMT</pubDate>
    <dc:creator>williamcarr</dc:creator>
    <dc:date>2014-08-16T17:08:16Z</dc:date>
    <item>
      <title>Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728061#M67564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having considerable trouble getting the results from a relationship query to populate an attribute inspector(for editing purposes). I have been working on this for a few weeks now and am having no luck. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Takes two clicks before the related info will pop up in a infowindow.&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14079573405839143" jivemacro_uid="_14079573405839143" modifiedtitle="true"&gt;
&lt;P&gt; function findRelatedRecords(features) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var relatedTopsQuery = new esri.tasks.RelationshipQuery();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; relatedTopsQuery.outFields = ["*"];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //relatedTopsQuery.relationshipId = 3;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; relatedTopsQuery.relationshipId = 0;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //relatedTopsQuery.objectIds = [features[0].attributes.OBJECTID];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; relatedTopsQuery.objectIds = [features[0].attributes.OBJECTID];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wellFeatureLayer.queryRelatedFeatures(relatedTopsQuery, function(relatedRecords) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("related recs: ", relatedRecords);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( ! relatedRecords.hasOwnProperty(features[0].attributes.OBJECTID) ) {&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; console.log("No related records for ObjectID_1: ", features[0].attributes.OBJECTID_1);&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; return;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var fset = relatedRecords[features[0].attributes.OBJECTID];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //var fset = relatedRecords[features[0].attributes.OBJECTID];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; items = dojo.map(fset.features, function(feature) {&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; return feature.attributes;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function findWells(evt) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; var asdf = evt.layers[0].layer;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var selectQuery = new Query();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var selectionQuery = new esri.tasks.Query();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var tol = map.extent.getWidth()/map.width * 5;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var x = evt.mapPoint.x;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var y = evt.mapPoint.y;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryExtent = new esri.geometry.Extent(x-tol,y-tol,x+tol,y+tol,evt.mapPoint.spatialReference);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectionQuery.geometry = queryExtent;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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; asdf.selectFeatures(selectionQuery, FeatureLayer.SELECTION_NEW, function(features) {&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; &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; //store the current feature&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; updateFeature = features[0]; console.log("adf");&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; map.infoWindow.setTitle(features[0].getLayer().name); console.log("adf");&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; map.infoWindow.show(evt.screenPoint,map.getInfoWindowAnchor(evt.screenPoint)); console.log("adf");&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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; });&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; &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; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/P&gt;
&lt;P&gt;// I am also unable to get the attribute inspector to pull up a non related feature&amp;nbsp; BELOW&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var layerInfos = [{&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; 'featureLayer': wellFeatureLayer1,&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; 'showAttachments': false,&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; 'isEditable': true,&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; 'fieldInfos': [&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; {'fieldName': 'SERVICE_ID', 'isEditable':true, 'tooltip': 'Current Status', 'label':'Status:'}&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; ]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&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; var attInspector = new AttributeInspector({&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; layerInfos:layerInfos&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, domConstruct.create("div"));&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be very much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 19:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728061#M67564</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2014-08-13T19:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728062#M67565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi William,&lt;/P&gt;&lt;P&gt;I had attempted this almost 2 years ago (v 2.7) with no success using &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;RelationshipQuery&lt;/SPAN&gt;. After several discussions with Support, I was told it couldn't be done and would be logged as &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;NIM081851&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what ended up working for me.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/message/253305#253305"&gt;https://community.esri.com/message/253305#253305&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you out.&lt;/P&gt;&lt;P&gt;Kyle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 22:16:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728062#M67565</guid>
      <dc:creator>KyleBelott</dc:creator>
      <dc:date>2014-08-13T22:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728063#M67566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will, the workflow would be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create FeatureLayer for related table&lt;/LI&gt;&lt;LI&gt;Create AttributeInspector using FeatureLayer from previous step&lt;/LI&gt;&lt;LI&gt;For any source feature, find related features and create list of ObjectIds&lt;/LI&gt;&lt;LI&gt;Select related features in the related FeatureLayer based on related ObjectIds&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/gvgcLh63/1/" title="http://jsfiddle.net/gvgcLh63/1/"&gt;Edit Related Features - JSFiddle&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 23:14:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728063#M67566</guid>
      <dc:creator>JohnGrayson</dc:creator>
      <dc:date>2014-08-13T23:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728064#M67567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Appreciate the help guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kyle, I actually found your work around after I posted this yesterday. I understand the logic but I'm drawing a blank on how the query should go. I'd really like to see this work for a better understanding of query abilities.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;query2 = new esri.tasks.Query();&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;query2.where = "serviceID = '" + selectedFeatures?? + "'";&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;query2.outFields = ["*"];&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important;"&gt;activityRecord.selectFeatures(query2, esri.layers.FeatureLayer.SELECTION_NEW);&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2014 12:40:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728064#M67567</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2014-08-14T12:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728065#M67568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John, that fiddle worked out pretty good. I've never used lang.hitch, so I guess I have some documentation to go through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2014 12:48:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728065#M67568</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2014-08-14T12:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728066#M67569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, I don't have a live website to show anymore and the original feature services have been relieved of duty. Essentially, query2 is querying the attribute of the selected feature in the "related" table (activityRecord in my case). You may have success with something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14080215986315275 jive_text_macro" jivemacro_uid="_14080215986315275"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; font-family: inherit; color: black;"&gt;query2.where = "serviceID = '" + selectedFeatures[0].attributes.serviceID + "'";&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; font-family: inherit; color: black;"&gt;So long as you have the serviceID attribute present in both the feature layer and table it should come back with results. Then identify the "&lt;STRONG&gt;featureLayer&lt;/STRONG&gt;" property as "&lt;STRONG&gt;activityRecord&lt;/STRONG&gt;' for the "&lt;STRONG&gt;layerInfos&lt;/STRONG&gt;" object, and specify "&lt;STRONG&gt;layerInfos&lt;/STRONG&gt;" in "&lt;STRONG&gt;attInspector&lt;/STRONG&gt;" for the "&lt;STRONG&gt;layerInfos"&lt;/STRONG&gt; property. I believe it should then hydrate the Inspector with the query2 results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I get some time this weekend maybe I'll spin up some services for an example.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; font-family: inherit; color: black;"&gt;In the mean time, let me know if there's more clarity I can provide.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; font-family: inherit; color: black;"&gt;Kyle&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2014 13:18:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728066#M67569</guid>
      <dc:creator>KyleBelott</dc:creator>
      <dc:date>2014-08-14T13:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728067#M67570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will, I like to use "lang.hitch(...)" to provide proper context (what 'this' means) to any function that runs async&amp;nbsp; Since a lot of the JS API methods return Deferred, this becomes a simple and powerful coding pattern.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2014 15:31:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728067#M67570</guid>
      <dc:creator>JohnGrayson</dc:creator>
      <dc:date>2014-08-14T15:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728068#M67571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kyle, here is what I got going as of nowbut it still won't populate the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_1408034848467154" jivemacro_uid="_1408034848467154" modifiedtitle="true"&gt;
&lt;P&gt;function initSelectToolbar(evt) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var asdf = evt.layers[0].layer;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var selectQuery = new Query();&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&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; map.on("click", function(evt) {&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; var selectionQuery = new esri.tasks.Query();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var tol = map.extent.getWidth()/map.width * 15;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var x = evt.mapPoint.x;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var y = evt.mapPoint.y;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryExtent = new esri.geometry.Extent(x-tol,y-tol,x+tol,y+tol,evt.mapPoint.spatialReference);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectionQuery.geometry = queryExtent;&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; &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; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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; asdf.selectFeatures(selectionQuery, FeatureLayer.SELECTION_NEW, function(features) {&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; &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; //store the current feature&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; updateFeature = features[0]; console.log("adf");&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; map.infoWindow.setTitle(features[0].getLayer().name); console.log("adf");&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; map.infoWindow.show(evt.screenPoint,map.getInfoWindowAnchor(evt.screenPoint)); console.log("adf");&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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; activityRecord = new esri.layers.FeatureLayer("/Relate1/FeatureServer/1", {&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; infoTemplate: recordTemplate,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; outFields: ["*"],&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; id: "activityRecord"&amp;nbsp; &lt;/P&gt;
&lt;P&gt;});&amp;nbsp; &lt;/P&gt;
&lt;P&gt;console.log("asdf1");&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query2 = new esri.tasks.Query("Relate1/FeatureServer/1");&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; related table field&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; point feature selected field&lt;/P&gt;
&lt;P&gt;query2.where = "serv_id = '" + selectedFeatures[0].attributes.Service_ID + "'";&lt;/P&gt;
&lt;P&gt;query2.outFields = ["*"];&amp;nbsp; &lt;/P&gt;
&lt;P&gt;activityRecord.selectFeatures(query2, esri.layers.FeatureLayer.SELECTION_NEW);&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;console.log("asdf2");&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfoss = [{ 'featureLayer': activityRecord,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'showAttachments': true,&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'isEditable': true&lt;/P&gt;
&lt;P&gt;}];&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; console.log("asdf3");&lt;/P&gt;
&lt;P&gt;attInspector = new esri.dijit.AttributeInspector(&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; { layerInfos: layerInfoss&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, domConstruct.create("div1"));&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; console.log("asdf4");&lt;/P&gt;
&lt;P&gt;recordTemplate = new esri.dijit.PopupTemplate({&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; title: "{PROPERTY_ID}",&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; fieldInfos: [&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; { fieldName: "serv_id", visible: true, label: "Record:" }&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; ],showAttachments: true&amp;nbsp; &lt;/P&gt;
&lt;P&gt;});&amp;nbsp; &lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried all sorts of combinations, so I'm not sure where exactly i'm screwing this up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2014 16:49:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728068#M67571</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2014-08-14T16:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728069#M67572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see any fieldInfos set in your layerInfoss object, but all fields should be returned anyways. This table is editable, correct? It may be an issue with the recordTemplate - title property being {PROPERTY_ID}. Do you have that field in your table? If not, change it to a field name from your table. You may want to try moving line 36 "&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;activityRecord.selectFeatures(&lt;/SPAN&gt;..." under the AttributeInspector constructor at line 48.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use Chrome for console logging. Set some objects in console.log and look to see if they are holding the expected values.&lt;/P&gt;&lt;P&gt;Welcome to the "combinations" club!&lt;/P&gt;&lt;P&gt;Kyle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2014 17:26:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728069#M67572</guid>
      <dc:creator>KyleBelott</dc:creator>
      <dc:date>2014-08-14T17:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728070#M67573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got a pretty good understanding of your sample, but I'm running into some issues with applying it to my app. The issue is getting it to work with an existing attribute inspector with no related tables. I've tried adding the layerInfos in to the&amp;nbsp; relatedTable.on("load", lang.hitch(this, function ()&amp;nbsp; ... No avail.&amp;nbsp; I've tried using separate attribute inspectors.. no luck. each would work pending there&amp;nbsp; was a&amp;nbsp;&amp;nbsp; map.infoWindow.setContent(attInspector1.domNode);, but not together. Any advice? I have a fiddle here &lt;A href="http://jsfiddle.net/thebillcarr/v2shP/10/" title="http://jsfiddle.net/thebillcarr/v2shP/10/"&gt;Edit fiddle - JSFiddle&lt;/A&gt;‌ set up to use two attribute inspectors, and it also has the combined layerInfo as well. Would you mind taking a look to see where I'm dropping the ball.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 15:19:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728070#M67573</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2014-08-15T15:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728071#M67574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will, I don't understand the code in your jsfiddle, and there are many issues in there.&amp;nbsp; It seems like you added a bunch of code that just tries to do similar things to what I was already doing, but then you also left my code in there.&amp;nbsp; It doesn't make sense.&amp;nbsp; Additionally, the sample map service you're trying to use doesn't have a FeatureService behind it, so I don't think its a good service to test this scenario out.&amp;nbsp; Having a jsfiddle built against the real FeatureServices you are working with would really help.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Don't create multiple instances of AttributeInspector, just add all your editable layers to one instance via layerInfos.&lt;/P&gt;&lt;P&gt;- Don't let the 'related table' concept confuse you, it's just another FeatureLayer that the AttributeInspecor can edit.&lt;/P&gt;&lt;P&gt;- Every layer added to the layerInfos of the AttributeInspector should have a list of fields you want to view/edit.&lt;/P&gt;&lt;P&gt;- If defining the editable fields dynamically from the FeatureLayer, then make sure the layer is 'loaded' before accessing the 'fields' collection. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 17:03:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728071#M67574</guid>
      <dc:creator>JohnGrayson</dc:creator>
      <dc:date>2014-08-15T17:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728072#M67575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, yeah that was pretty bad. Not sure what went on there, but I assure you I haven't been drinking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've loaded the layers in like in your samples, but the non related layer is still not popping up. I fixed the Fiddle &lt;A href="http://jsfiddle.net/thebillcarr/v2shP/12/" title="http://jsfiddle.net/thebillcarr/v2shP/12/"&gt;Edit fiddle - JSFiddle&lt;/A&gt; , and it is returning the related table info but not the&amp;nbsp; non related feature.(I realize that is just a Map Service, but it should still return a value. right?) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is due to the all the selections running through the onSourceLayerClick(evt), not finding a value and turning up "No Related Items". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate all your help, John, do you think you could take one more look at it???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 19:32:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728072#M67575</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2014-08-15T19:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728073#M67576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will, there are several considerations to look at for this use case. The relationship query is specific to a layer, so the 'click' event should be on that layer, not the map.&amp;nbsp; This routine only selects items from the related table, so those are the only ones that show up in the AttributeInspector.&amp;nbsp; If you wish to see features from a different layer in the AttributeInspector you'll have to create a different 'selection' routine that is specific to that layer.&amp;nbsp; You could have a generic 'selection' routine, but then you'd have to put logic in it to deal with each layer in a specific way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/v2shP/18/" title="http://jsfiddle.net/v2shP/18/"&gt;Edit fiddle - JSFiddle&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 20:55:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728073#M67576</guid>
      <dc:creator>JohnGrayson</dc:creator>
      <dc:date>2014-08-15T20:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Related table in Attribute Inspector</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728074#M67577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good stuff, John. You got me out of a hell of a pickle. Appreciate all the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 17:08:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/related-table-in-attribute-inspector/m-p/728074#M67577</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2014-08-16T17:08:16Z</dc:date>
    </item>
  </channel>
</rss>

