<?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: Add buttons to attribute table context menu in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331583#M10461</link>
    <description>&lt;P&gt;Thank you this ended up working for me! Do you know if there is a resource for finding the REFID's of the different modules?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what my Code ended up looking like in case anyone else runs in to this same question.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;		&amp;lt;updateModule refID="esri_editing_EditingModule"&amp;gt;
			&amp;lt;menus&amp;gt;
				&amp;lt;updateMenu refID="esri_editing_tableAllRowContextMenu"&amp;gt;
					&amp;lt;insertButton refID="Menu_AttributeTable_Items_Button1" separator="true"   /&amp;gt;		
				&amp;lt;/updateMenu&amp;gt;
			&amp;lt;/menus&amp;gt;
		&amp;lt;/updateModule&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Sep 2023 18:09:48 GMT</pubDate>
    <dc:creator>Schweitzer</dc:creator>
    <dc:date>2023-09-22T18:09:48Z</dc:date>
    <item>
      <title>Add buttons to attribute table context menu</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331252#M10443</link>
      <description>&lt;P&gt;I am wanting to add some additional buttons to the context menu.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="table.png" style="width: 205px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81333iA0C0C9826240DE00/image-size/large?v=v2&amp;amp;px=999" role="button" title="table.png" alt="table.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have tried many different versions of changing the Config.daml with no luck.&lt;/P&gt;&lt;P&gt;By looking at &lt;A href="https://github.com/Esri/arcgis-pro-sdk/blob/v3.0.0.36056/DAML/Editing.daml.xml" target="_self"&gt;Editing.daml&lt;/A&gt;&amp;nbsp; it looks like the ID for the menu is "esri_editing_tableAllRowContextMenu"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;			&amp;lt;updateModule refID="esri_mapping"&amp;gt;
				&amp;lt;menus&amp;gt;
					&amp;lt;updateMenu refID="esri_editing_tableAllRowContextMenu"&amp;gt;
						&amp;lt;insertButton refID="Menu_AttributeTable_Items_Button1" separator="false"   placeWith="esri_editing_tableDeleteRow" insert="after" /&amp;gt;
					&amp;lt;/updateMenu&amp;gt;
				&amp;lt;/menus&amp;gt;
			&amp;lt;/updateModule&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 21 Sep 2023 20:10:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331252#M10443</guid>
      <dc:creator>Schweitzer</dc:creator>
      <dc:date>2023-09-21T20:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Add buttons to attribute table context menu</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331264#M10444</link>
      <description>&lt;P&gt;Are you sure it is possible to modify buttons on a drop down menu? In some cases the buttons are not directly controlled by a user editable DAML file. See:&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-sdk-questions/is-it-possible-to-add-button-on-toolbar-in/td-p/1137435" target="_blank"&gt;is it possible to add button on toolbar in attribu... - Esri Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 20:39:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331264#M10444</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2023-09-21T20:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Add buttons to attribute table context menu</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331407#M10453</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;esri_editing_tableAllRowContextMenu is located in another module which refId is "esri_editing_EditingModule". Change "esri_mapping" to this one&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 12:17:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331407#M10453</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-09-22T12:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add buttons to attribute table context menu</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331583#M10461</link>
      <description>&lt;P&gt;Thank you this ended up working for me! Do you know if there is a resource for finding the REFID's of the different modules?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what my Code ended up looking like in case anyone else runs in to this same question.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;		&amp;lt;updateModule refID="esri_editing_EditingModule"&amp;gt;
			&amp;lt;menus&amp;gt;
				&amp;lt;updateMenu refID="esri_editing_tableAllRowContextMenu"&amp;gt;
					&amp;lt;insertButton refID="Menu_AttributeTable_Items_Button1" separator="true"   /&amp;gt;		
				&amp;lt;/updateMenu&amp;gt;
			&amp;lt;/menus&amp;gt;
		&amp;lt;/updateModule&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 18:09:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331583#M10461</guid>
      <dc:creator>Schweitzer</dc:creator>
      <dc:date>2023-09-22T18:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Add buttons to attribute table context menu</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331740#M10469</link>
      <description>&lt;P&gt;Starting point could be&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ArcGIS%20Pro%20DAML%20ID%20Reference" target="_self"&gt;ArcGIS Pro DAML ID Reference&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;The primary source for me is *.daml files in ArcGIS Pro installation folder. You can find modules and controls REFID's here. Structure of these files is the same as in your project config.daml&lt;/P&gt;</description>
      <pubDate>Sat, 23 Sep 2023 07:03:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-buttons-to-attribute-table-context-menu/m-p/1331740#M10469</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-09-23T07:03:04Z</dc:date>
    </item>
  </channel>
</rss>

