<?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: FeatureTable - How to check-off some columns before loading into the table in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-how-to-check-off-some-columns-before/m-p/1039390#M72164</link>
    <description>&lt;P&gt;Perfect!&amp;nbsp; Thanks A LOT!&lt;/P&gt;</description>
    <pubDate>Mon, 22 Mar 2021 17:24:27 GMT</pubDate>
    <dc:creator>ShaningYu</dc:creator>
    <dc:date>2021-03-22T17:24:27Z</dc:date>
    <item>
      <title>FeatureTable - How to check-off some columns before loading into the table</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-how-to-check-off-some-columns-before/m-p/1039361#M72161</link>
      <description>&lt;P&gt;I loaded an excel file and then converted it as a FeatureTable.&amp;nbsp; I want to turn off some fields (or columns, e.g OBJECTID) when the table is loaded.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Mar 2021 16:24:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-how-to-check-off-some-columns-before/m-p/1039361#M72161</guid>
      <dc:creator>ShaningYu</dc:creator>
      <dc:date>2021-03-22T16:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureTable - How to check-off some columns before loading into the table</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-how-to-check-off-some-columns-before/m-p/1039380#M72163</link>
      <description>&lt;P&gt;Set up a field list and specify how to show/handle specific columns:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var lstFields = [
    { name: OBJECTID, visible: false },
    { name: "StopID", label: "Stop ID: ", direction: "asc", editable: false },
    { name: "Location", label: "Bus Stop Location: " },
    { name: "Routes", label: "Routes Served: ", direction: "asc"},
    { name: "Jurisdiction", label: "Jurisdiction: ", required: true }
]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, when you define the FeatureTable you can use this field list for the 'fieldConfigs' value:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;busStopViewTable = new FeatureTable({
    view: view,
    layer: busStopsLayer,
    editingEnabled: true,
    menuConfig: {
        items: [{
            label: "Zoom to feature(s)",
            iconClass: "esri-icon-zoom-in-magnifying-glass",
            clickFunction: function (event) {
                //zoomToSelectedFeatureTable();
                   console.log("Need to build zoomToSelectedFeatureTable function");
            }
        }]
    },
    // Autocast the FieldColumnConfigs
    fieldConfigs: lstFields,
    container: document.getElementById("tableDiv")
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Mar 2021 16:57:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-how-to-check-off-some-columns-before/m-p/1039380#M72163</guid>
      <dc:creator>JeffreyWilkerson</dc:creator>
      <dc:date>2021-03-22T16:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureTable - How to check-off some columns before loading into the table</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-how-to-check-off-some-columns-before/m-p/1039390#M72164</link>
      <description>&lt;P&gt;Perfect!&amp;nbsp; Thanks A LOT!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Mar 2021 17:24:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-how-to-check-off-some-columns-before/m-p/1039390#M72164</guid>
      <dc:creator>ShaningYu</dc:creator>
      <dc:date>2021-03-22T17:24:27Z</dc:date>
    </item>
  </channel>
</rss>

