<?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 FeatureTable not loading rows in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-not-loading-rows/m-p/473580#M43925</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/439860_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using standard javascript and standard examples of AMD, my feature table loads just fine, but when using this inside typescript the rows just never load. It also never makes a call to retrieve the data. I also added an on error event as referenced in the code below and it never gets thrown. I also have many other controls that run just fine and I receive no javascript errors. What can I do diagnose the issue further?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code setting up featureTable:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this._myFeatureTable = new FeatureTable({&lt;BR /&gt; showFeatureCount: true,&lt;BR /&gt; showColumnHeaderTooltips: true,&lt;BR /&gt; showAttachments: true,&lt;BR /&gt; syncSelection: true, // only allows selection from the table to the map&lt;BR /&gt; zoomToSelection:&lt;BR /&gt; false, //auto zooming can be kind of annoying when you are selecting from the map&lt;BR /&gt; gridOptions: {&lt;BR /&gt; allowSelectAll: true,&lt;BR /&gt; allowTextSelection: true,&lt;BR /&gt; },&lt;BR /&gt; featureLayer: featureLayer,&lt;BR /&gt; //outFields: ["HydID,StreetName,OBJECTID"],&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; map: this._myMap,&lt;BR /&gt; editable: false&lt;BR /&gt; },&lt;BR /&gt; divID);&lt;/P&gt;&lt;P&gt;if (onLoaded != null) {&lt;BR /&gt; this._myFeatureTable.on("refresh",&lt;BR /&gt; (e) =&amp;gt; {&lt;BR /&gt; onLoaded();&lt;BR /&gt; }); //need to do this or else the row may not actually this.get highlighted, this is because the table may not actually be loaded when we go to select yet&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;this._myFeatureTable.on("load", function(evt){&lt;BR /&gt; console.log("load event - ", evt);&lt;BR /&gt; this.refresh();&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;this._myFeatureTable.on("error", function(evt){&lt;BR /&gt; console.log("error event - ", evt);&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;this._myFeatureTable.startup();&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code for instantiating typescript:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;requirejs.config({&lt;BR /&gt; waitSeconds: 0,&lt;BR /&gt; baseUrl: "@(Url.Content("~/Scripts/app/"))",&lt;BR /&gt; paths: {&lt;BR /&gt; GIS: "./GIS"&lt;BR /&gt; },&lt;BR /&gt; packages: [{&lt;BR /&gt; name: 'dojox',&lt;BR /&gt; main: 'main'&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; name: 'dojo',&lt;BR /&gt; main: 'main'&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; name: 'dijit',&lt;BR /&gt; main: 'main'&lt;BR /&gt; } ],&lt;/P&gt;&lt;P&gt;deps: ['dojox/main', 'dojo/main', 'dijit/main']&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;require(["GIS/GIS"],&lt;BR /&gt; function(GIS) {&lt;BR /&gt; gisModule = new GIS("@(JsonConvert.SerializeObject(gisViewData))");&lt;BR /&gt; });&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Mar 2019 22:07:52 GMT</pubDate>
    <dc:creator>PhilipKnight1</dc:creator>
    <dc:date>2019-03-19T22:07:52Z</dc:date>
    <item>
      <title>FeatureTable not loading rows</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-not-loading-rows/m-p/473580#M43925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/439860_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using standard javascript and standard examples of AMD, my feature table loads just fine, but when using this inside typescript the rows just never load. It also never makes a call to retrieve the data. I also added an on error event as referenced in the code below and it never gets thrown. I also have many other controls that run just fine and I receive no javascript errors. What can I do diagnose the issue further?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code setting up featureTable:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this._myFeatureTable = new FeatureTable({&lt;BR /&gt; showFeatureCount: true,&lt;BR /&gt; showColumnHeaderTooltips: true,&lt;BR /&gt; showAttachments: true,&lt;BR /&gt; syncSelection: true, // only allows selection from the table to the map&lt;BR /&gt; zoomToSelection:&lt;BR /&gt; false, //auto zooming can be kind of annoying when you are selecting from the map&lt;BR /&gt; gridOptions: {&lt;BR /&gt; allowSelectAll: true,&lt;BR /&gt; allowTextSelection: true,&lt;BR /&gt; },&lt;BR /&gt; featureLayer: featureLayer,&lt;BR /&gt; //outFields: ["HydID,StreetName,OBJECTID"],&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; map: this._myMap,&lt;BR /&gt; editable: false&lt;BR /&gt; },&lt;BR /&gt; divID);&lt;/P&gt;&lt;P&gt;if (onLoaded != null) {&lt;BR /&gt; this._myFeatureTable.on("refresh",&lt;BR /&gt; (e) =&amp;gt; {&lt;BR /&gt; onLoaded();&lt;BR /&gt; }); //need to do this or else the row may not actually this.get highlighted, this is because the table may not actually be loaded when we go to select yet&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;this._myFeatureTable.on("load", function(evt){&lt;BR /&gt; console.log("load event - ", evt);&lt;BR /&gt; this.refresh();&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;this._myFeatureTable.on("error", function(evt){&lt;BR /&gt; console.log("error event - ", evt);&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;this._myFeatureTable.startup();&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code for instantiating typescript:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;requirejs.config({&lt;BR /&gt; waitSeconds: 0,&lt;BR /&gt; baseUrl: "@(Url.Content("~/Scripts/app/"))",&lt;BR /&gt; paths: {&lt;BR /&gt; GIS: "./GIS"&lt;BR /&gt; },&lt;BR /&gt; packages: [{&lt;BR /&gt; name: 'dojox',&lt;BR /&gt; main: 'main'&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; name: 'dojo',&lt;BR /&gt; main: 'main'&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; name: 'dijit',&lt;BR /&gt; main: 'main'&lt;BR /&gt; } ],&lt;/P&gt;&lt;P&gt;deps: ['dojox/main', 'dojo/main', 'dijit/main']&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;require(["GIS/GIS"],&lt;BR /&gt; function(GIS) {&lt;BR /&gt; gisModule = new GIS("@(JsonConvert.SerializeObject(gisViewData))");&lt;BR /&gt; });&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2019 22:07:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-not-loading-rows/m-p/473580#M43925</guid>
      <dc:creator>PhilipKnight1</dc:creator>
      <dc:date>2019-03-19T22:07:52Z</dc:date>
    </item>
  </channel>
</rss>

