<?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: How to Programatically add a FeatureClass as a table to the Attributes Table in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694625#M13488</link>
    <description>&lt;P&gt;You’re trying to use Map-specific tools for a non-Map task. If you want a table that lives only in your custom pane, treat it like a standard database connection. Open the Geodatabase, open the Table, and bind that data directly to your UI. Leave the "Map Items" for the Map.&lt;/P&gt;&lt;P&gt;Are you trying to display this in a standard WPF DataGrid, or hook into the existing ArcGIS Pro Table Control?&lt;/P&gt;</description>
    <pubDate>Mon, 06 Apr 2026 18:30:25 GMT</pubDate>
    <dc:creator>VenkataKondepati</dc:creator>
    <dc:date>2026-04-06T18:30:25Z</dc:date>
    <item>
      <title>How to Programatically add a FeatureClass as a table to the Attributes Table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694579#M13485</link>
      <description>&lt;P&gt;Hi...&lt;/P&gt;&lt;P&gt;In ArcGIS Pro, I can rigth-click a FeatureClass the .gdb file and select Open Table in its context menu.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="EugeneStaten_0-1775481618521.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150700iEBF837DA195A977B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="EugeneStaten_0-1775481618521.png" alt="EugeneStaten_0-1775481618521.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I do this, the attribute window shows the list of rows, and no FeatureLayer gets placed into the map.&lt;/P&gt;&lt;P&gt;This is what I want!!!&lt;/P&gt;&lt;P&gt;Is there a way to do this programatically?&amp;nbsp; &amp;nbsp;I know there is, because the application, a program, does it.&lt;/P&gt;&lt;P&gt;When I try to add the FeatureClass item to my custom table, Visual Studio tells me the featureClass is not a map item.&lt;/P&gt;&lt;P&gt;When I tried to turn the FeatureClass into a StandaloneTable,(which still puts it in the map), I get an error during creation.(co-pilot says it's because my FeatureClass is in a Dataset called __WorkContainer__ and StandaloneTable creation does not trust workspaces that look temporary.&amp;nbsp; Is this really the case?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="EugeneStaten_0-1775486281035.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150703i871E5A916B279CA8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="EugeneStaten_0-1775486281035.png" alt="EugeneStaten_0-1775486281035.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;My preference is to do with my FeatureClass what the application does, but within my custom attribute table.&lt;/P&gt;&lt;P&gt;The table is the one from the community examples.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 14:38:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694579#M13485</guid>
      <dc:creator>EugeneStaten</dc:creator>
      <dc:date>2026-04-06T14:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to Programatically add a FeatureClass as a table to the Attributes Table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694625#M13488</link>
      <description>&lt;P&gt;You’re trying to use Map-specific tools for a non-Map task. If you want a table that lives only in your custom pane, treat it like a standard database connection. Open the Geodatabase, open the Table, and bind that data directly to your UI. Leave the "Map Items" for the Map.&lt;/P&gt;&lt;P&gt;Are you trying to display this in a standard WPF DataGrid, or hook into the existing ArcGIS Pro Table Control?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 18:30:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694625#M13488</guid>
      <dc:creator>VenkataKondepati</dc:creator>
      <dc:date>2026-04-06T18:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to Programatically add a FeatureClass as a table to the Attributes Table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694688#M13490</link>
      <description>&lt;P&gt;I'm trying to hook it into the TableControl.&lt;/P&gt;&lt;P&gt;So... I start with FeatureClasses in a list in a custom catalog.&lt;/P&gt;&lt;P&gt;I want to select a featureClass and click the show attributes button to se the table.&lt;/P&gt;&lt;P&gt;I want this because the initial feature classes hold described locations that are true featurelayers etc.&lt;/P&gt;&lt;P&gt;The only reason the initial rows are Featureclasses and not database tables is because they originate from shape files.&lt;/P&gt;&lt;P&gt;I am porting an Arc Map plugin from before 2011, and everything starts as shape file and ended up in a database afer all of the manipuations were done.&lt;/P&gt;&lt;P&gt;Our job scope is to make it work, as is, with slight improvements, and with the newest Arc Pro and Arc Enterprise server.&amp;nbsp; Year two is when we are allowed to revamp the plugin.&lt;/P&gt;&lt;P&gt;With Arc Map, IFeatureLayers did not have to rest in the map in order to be displayed in the feature table.&amp;nbsp; They could be created in memory, like in Javascript now.&lt;/P&gt;&lt;P&gt;So... I have a FeatureClass, which is a table,&amp;nbsp; and, when I right-click the very feature table in my .gdb and select show table, it happens...&lt;/P&gt;&lt;P&gt;This is why I suspect it can happen in another circumstance.&lt;/P&gt;&lt;P&gt;You are suggesting I create my own datagrid and forget about the communy's sample Attibute table, aren't you?&lt;/P&gt;&lt;P&gt;Right now, I am putting all alyers that don't belong in the finished product in a group layer called __workspace__ and I dont' show them.&amp;nbsp; The just show in the Contents pane.&lt;/P&gt;&lt;P&gt;I suppose this will work for now.&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 22:24:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694688#M13490</guid>
      <dc:creator>EugeneStaten</dc:creator>
      <dc:date>2026-04-06T22:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to Programatically add a FeatureClass as a table to the Attributes Table</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694716#M13491</link>
      <description>&lt;P&gt;Yes, you can use the TableControl to display the content from a Catalog item.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Take a look at this ProGuide which walks you through the code and explains the process.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProGuide-TableControl" target="_blank"&gt;https://github.com/esri/arcgis-pro-sdk/wiki/ProGuide-TableControl&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2026 00:03:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-programatically-add-a-featureclass-as-a/m-p/1694716#M13491</guid>
      <dc:creator>NarelleChedzey</dc:creator>
      <dc:date>2026-04-07T00:03:00Z</dc:date>
    </item>
  </channel>
</rss>

