<?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 Display several feature tables in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-several-feature-tables/m-p/351361#M32539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have several feature tables with related records that I would like to display but cannot seem to get my head around the structure. I am using this example as a starting point:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jssamples/featuretable_relatedrecords.html" title="https://developers.arcgis.com/javascript/3/jssamples/featuretable_relatedrecords.html"&gt;FeatureTable - related records | ArcGIS API for JavaScript 3.27&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;here is my code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; map.on("load", loadTableSites, loadTableSpecies);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt; function loadTableSites(){&lt;BR /&gt; var myFeatureLayer = new FeatureLayer("../MapServer/2",{&lt;BR /&gt; mode: FeatureLayer.MODE_ONDEMAND,&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; visible: true,&lt;BR /&gt; id: "fLayer"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // apply the selection symbol for the layer&lt;BR /&gt; var selectionSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID,&lt;BR /&gt; new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID,&lt;BR /&gt; new Color([255, 0, 0, 0.35]), 1),&lt;BR /&gt; new Color([255, 0, 0, 0.35]));&lt;BR /&gt; myFeatureLayer.setSelectionSymbol(selectionSymbol);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt; // listen to featurelayer click event to handle selection&lt;BR /&gt; // from layer to the table.&lt;BR /&gt; // when user clicks on a feature on the map, the corresponding&lt;BR /&gt; // record will be selected in the table. &lt;BR /&gt; myFeatureLayer.on("click", function(evt) {&lt;BR /&gt; var idProperty = myFeatureLayer.objectIdField;&lt;BR /&gt; var feature, featureId, query;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; if (evt.graphic &amp;amp;&amp;amp; evt.graphic.attributes &amp;amp;&amp;amp; evt.graphic.attributes[idProperty]) {&lt;BR /&gt; feature = evt.graphic,&lt;BR /&gt; featureId = feature.attributes[idProperty];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; query = new Query();&lt;BR /&gt; query.returnGeometry = false;&lt;BR /&gt; query.objectIds = [featureId];&lt;BR /&gt; query.where = "1=1";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureLayer.selectFeatures(query, FeatureLayer.SELECTION_NEW);&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; map.addLayer(myFeatureLayer);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // create new FeatureTable and set its properties&lt;BR /&gt; var myFeatureTable = new FeatureTable({&lt;BR /&gt; featureLayer : myFeatureLayer,&lt;BR /&gt; map : map,&lt;BR /&gt; syncSelection: true,&lt;BR /&gt; showRelatedRecords: true,&lt;BR /&gt; showAttachments: true,&lt;BR /&gt; // outfields&lt;BR /&gt; outFields: ["SitRecID", "NatName"],&lt;BR /&gt; }, 'myTableNode');&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureTable.startup();&lt;BR /&gt; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/*&lt;BR /&gt;Another table&lt;BR /&gt;*/&lt;BR /&gt; &lt;BR /&gt; function loadTableSpecies(){&lt;BR /&gt; var myFeatureLayerSpp = new FeatureLayer("../MapServer/6",{&lt;BR /&gt; mode: FeatureLayer.MODE_ONDEMAND,&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; visible: true,&lt;BR /&gt; id: "fLayer"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // apply the selection symbol for the layer&lt;BR /&gt; var selectionSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID,&lt;BR /&gt; new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID,&lt;BR /&gt; new Color([255, 0, 0, 0.35]), 1),&lt;BR /&gt; new Color([255, 0, 0, 0.35]));&lt;BR /&gt; myFeatureLayerSpp.setSelectionSymbol(selectionSymbol);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt; // listen to featurelayer click event to handle selection&lt;BR /&gt; // from layer to the table.&lt;BR /&gt; // when user clicks on a feature on the map, the corresponding&lt;BR /&gt; // record will be selected in the table. &lt;BR /&gt; myFeatureLayerSpp.on("click", function(evt) {&lt;BR /&gt; var idProperty = myFeatureLayer.objectIdField;&lt;BR /&gt; var feature, featureId, query;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; if (evt.graphic &amp;amp;&amp;amp; evt.graphic.attributes &amp;amp;&amp;amp; evt.graphic.attributes[idProperty]) {&lt;BR /&gt; feature = evt.graphic,&lt;BR /&gt; featureId = feature.attributes[idProperty];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; query = new Query();&lt;BR /&gt; query.returnGeometry = false;&lt;BR /&gt; query.objectIds = [featureId];&lt;BR /&gt; query.where = "1=1";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureLayerSpp.selectFeatures(query, FeatureLayer.SELECTION_NEW);&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; map.addLayer(myFeatureLayerSpp);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // create new FeatureTable and set its properties&lt;BR /&gt; var myFeatureTableSpp = new FeatureTable({&lt;BR /&gt; featureLayer : myFeatureLayerSpp,&lt;BR /&gt; map : map,&lt;BR /&gt; syncSelection: true,&lt;BR /&gt; showRelatedRecords: true,&lt;BR /&gt; showAttachments: true,&lt;BR /&gt; // outfields&lt;BR /&gt; outFields: ["Common_name"],&lt;BR /&gt; }, 'myTableNodeSpp');&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureTableSpp.startup(); &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I can use one or the other features and the records display in the feature table but I cannot work out ow to display both tables below the map. Here is the html part:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &amp;lt;body class="claro esri"&amp;gt;&lt;BR /&gt; &amp;lt;div data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="design:'headline'" style="width:100%; height:100%;"&amp;gt;&lt;BR /&gt; &amp;lt;div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center', splitter:true" style="height:60%"&amp;gt;&lt;BR /&gt; &amp;lt;div id="map"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div id="bot" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'bottom', splitter:true" style="height:40%"&amp;gt;&lt;BR /&gt; &amp;lt;div id="myTableNode"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div id="bot1" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'bottom', splitter:true" style="height:40%"&amp;gt;&lt;BR /&gt; &amp;lt;div id="myTableNodeSpp"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt; &lt;BR /&gt; &lt;BR /&gt; &amp;lt;/div&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Ideally I want to display the tables in respective tabs, I gather this is possible but am stuck. Any pointers or suggestions would be welcome.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Many thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Mar 2019 16:20:15 GMT</pubDate>
    <dc:creator>MarkBalman</dc:creator>
    <dc:date>2019-03-04T16:20:15Z</dc:date>
    <item>
      <title>Display several feature tables</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-several-feature-tables/m-p/351361#M32539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have several feature tables with related records that I would like to display but cannot seem to get my head around the structure. I am using this example as a starting point:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jssamples/featuretable_relatedrecords.html" title="https://developers.arcgis.com/javascript/3/jssamples/featuretable_relatedrecords.html"&gt;FeatureTable - related records | ArcGIS API for JavaScript 3.27&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;here is my code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; map.on("load", loadTableSites, loadTableSpecies);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt; function loadTableSites(){&lt;BR /&gt; var myFeatureLayer = new FeatureLayer("../MapServer/2",{&lt;BR /&gt; mode: FeatureLayer.MODE_ONDEMAND,&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; visible: true,&lt;BR /&gt; id: "fLayer"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // apply the selection symbol for the layer&lt;BR /&gt; var selectionSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID,&lt;BR /&gt; new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID,&lt;BR /&gt; new Color([255, 0, 0, 0.35]), 1),&lt;BR /&gt; new Color([255, 0, 0, 0.35]));&lt;BR /&gt; myFeatureLayer.setSelectionSymbol(selectionSymbol);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt; // listen to featurelayer click event to handle selection&lt;BR /&gt; // from layer to the table.&lt;BR /&gt; // when user clicks on a feature on the map, the corresponding&lt;BR /&gt; // record will be selected in the table. &lt;BR /&gt; myFeatureLayer.on("click", function(evt) {&lt;BR /&gt; var idProperty = myFeatureLayer.objectIdField;&lt;BR /&gt; var feature, featureId, query;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; if (evt.graphic &amp;amp;&amp;amp; evt.graphic.attributes &amp;amp;&amp;amp; evt.graphic.attributes[idProperty]) {&lt;BR /&gt; feature = evt.graphic,&lt;BR /&gt; featureId = feature.attributes[idProperty];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; query = new Query();&lt;BR /&gt; query.returnGeometry = false;&lt;BR /&gt; query.objectIds = [featureId];&lt;BR /&gt; query.where = "1=1";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureLayer.selectFeatures(query, FeatureLayer.SELECTION_NEW);&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; map.addLayer(myFeatureLayer);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // create new FeatureTable and set its properties&lt;BR /&gt; var myFeatureTable = new FeatureTable({&lt;BR /&gt; featureLayer : myFeatureLayer,&lt;BR /&gt; map : map,&lt;BR /&gt; syncSelection: true,&lt;BR /&gt; showRelatedRecords: true,&lt;BR /&gt; showAttachments: true,&lt;BR /&gt; // outfields&lt;BR /&gt; outFields: ["SitRecID", "NatName"],&lt;BR /&gt; }, 'myTableNode');&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureTable.startup();&lt;BR /&gt; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/*&lt;BR /&gt;Another table&lt;BR /&gt;*/&lt;BR /&gt; &lt;BR /&gt; function loadTableSpecies(){&lt;BR /&gt; var myFeatureLayerSpp = new FeatureLayer("../MapServer/6",{&lt;BR /&gt; mode: FeatureLayer.MODE_ONDEMAND,&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; visible: true,&lt;BR /&gt; id: "fLayer"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // apply the selection symbol for the layer&lt;BR /&gt; var selectionSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID,&lt;BR /&gt; new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID,&lt;BR /&gt; new Color([255, 0, 0, 0.35]), 1),&lt;BR /&gt; new Color([255, 0, 0, 0.35]));&lt;BR /&gt; myFeatureLayerSpp.setSelectionSymbol(selectionSymbol);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt; // listen to featurelayer click event to handle selection&lt;BR /&gt; // from layer to the table.&lt;BR /&gt; // when user clicks on a feature on the map, the corresponding&lt;BR /&gt; // record will be selected in the table. &lt;BR /&gt; myFeatureLayerSpp.on("click", function(evt) {&lt;BR /&gt; var idProperty = myFeatureLayer.objectIdField;&lt;BR /&gt; var feature, featureId, query;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; if (evt.graphic &amp;amp;&amp;amp; evt.graphic.attributes &amp;amp;&amp;amp; evt.graphic.attributes[idProperty]) {&lt;BR /&gt; feature = evt.graphic,&lt;BR /&gt; featureId = feature.attributes[idProperty];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; query = new Query();&lt;BR /&gt; query.returnGeometry = false;&lt;BR /&gt; query.objectIds = [featureId];&lt;BR /&gt; query.where = "1=1";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureLayerSpp.selectFeatures(query, FeatureLayer.SELECTION_NEW);&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; map.addLayer(myFeatureLayerSpp);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; // create new FeatureTable and set its properties&lt;BR /&gt; var myFeatureTableSpp = new FeatureTable({&lt;BR /&gt; featureLayer : myFeatureLayerSpp,&lt;BR /&gt; map : map,&lt;BR /&gt; syncSelection: true,&lt;BR /&gt; showRelatedRecords: true,&lt;BR /&gt; showAttachments: true,&lt;BR /&gt; // outfields&lt;BR /&gt; outFields: ["Common_name"],&lt;BR /&gt; }, 'myTableNodeSpp');&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; myFeatureTableSpp.startup(); &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I can use one or the other features and the records display in the feature table but I cannot work out ow to display both tables below the map. Here is the html part:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &amp;lt;body class="claro esri"&amp;gt;&lt;BR /&gt; &amp;lt;div data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="design:'headline'" style="width:100%; height:100%;"&amp;gt;&lt;BR /&gt; &amp;lt;div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center', splitter:true" style="height:60%"&amp;gt;&lt;BR /&gt; &amp;lt;div id="map"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div id="bot" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'bottom', splitter:true" style="height:40%"&amp;gt;&lt;BR /&gt; &amp;lt;div id="myTableNode"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div id="bot1" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'bottom', splitter:true" style="height:40%"&amp;gt;&lt;BR /&gt; &amp;lt;div id="myTableNodeSpp"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt; &lt;BR /&gt; &lt;BR /&gt; &amp;lt;/div&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Ideally I want to display the tables in respective tabs, I gather this is possible but am stuck. Any pointers or suggestions would be welcome.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Many thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2019 16:20:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-several-feature-tables/m-p/351361#M32539</guid>
      <dc:creator>MarkBalman</dc:creator>
      <dc:date>2019-03-04T16:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Display several feature tables</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-several-feature-tables/m-p/351362#M32540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, I managed to solve it if any one else is stuck this is what I did - I just needed to add a tab container (after looking through the examples here specifically the nested layouts example:&lt;/P&gt;&lt;P&gt;&lt;A class="" href="https://dojotoolkit.org/reference-guide/1.10/dijit/layout/BorderContainer.html" title="https://dojotoolkit.org/reference-guide/1.10/dijit/layout/BorderContainer.html"&gt;dijit/layout/BorderContainer — The Dojo Toolkit - Reference Guide&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO I now have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;div data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="design:'headline'" style="width:100%; height:100%;"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center', splitter:true" style="height:60%"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="map"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div data-dojo-type="dijit/layout/TabContainer" data-dojo-props="region:'bottom', tabStrip:true" style="height:40%"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id='bot' data-dojo-type="dijit/layout/ContentPane" title="My first tab" selected="true"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="myTableNodeSites"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id='bot1' data-dojo-type="dijit/layout/ContentPane" title="My second tab"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="myTableNodeSpp"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;!-- end TabContainer --&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;!-- end BorderContainer --&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2019 18:48:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/display-several-feature-tables/m-p/351362#M32540</guid>
      <dc:creator>MarkBalman</dc:creator>
      <dc:date>2019-03-04T18:48:11Z</dc:date>
    </item>
  </channel>
</rss>

