<?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 insert a custom button into a esri core group? in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-insert-a-custom-button-into-a-esri-core/m-p/1505516#M11875</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/205210"&gt;@nadja&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pro "module" to update is "esri_core_module"&amp;nbsp; This is the module that creates the "Insert" tab on the Ribbon with the "Project" group.&lt;/P&gt;&lt;P&gt;So in your DAML (line 27), use this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;updateModule refID="esri_core_module"&amp;gt;&lt;/P&gt;&lt;P&gt;instead of&amp;nbsp;&amp;lt;updateModule refID="esri_core_insertTab"&amp;gt;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Jul 2024 18:28:54 GMT</pubDate>
    <dc:creator>UmaHarano</dc:creator>
    <dc:date>2024-07-15T18:28:54Z</dc:date>
    <item>
      <title>how to insert a custom button into a esri core group?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-insert-a-custom-button-into-a-esri-core/m-p/1505512#M11874</link>
      <description>&lt;P&gt;I've found this docu:&amp;nbsp;&lt;A href="https://www.esri.com/content/dam/esrisites/en-us/events/conferences/2020/federal-gis/arcgis-pro-sdk-for-net.pdf" target="_blank" rel="noopener"&gt;https://www.esri.com/content/dam/esrisites/en-us/events/conferences/2020/federal-gis/arcgis-pro-sdk-for-net.pdf&lt;/A&gt;&amp;nbsp;and tried to adapt it, so that my custom button which opens my dockpane not only appears in a separate add-in tab, but also in the Ribbon under Insert &amp;gt;&amp;gt; Project. I copied the corresponding command ids. But it's not working. any ideas why? do i need special options?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;	&amp;lt;modules&amp;gt;
		&amp;lt;insertModule id="My_Module" className="Module1" autoLoad="true" caption="Module1"&amp;gt;
			&amp;lt;tabs&amp;gt;
				&amp;lt;tab id="My_Tab1" caption="MyTab" keytip="D"&amp;gt;
					&amp;lt;group refID="My_Group1"/&amp;gt;
				&amp;lt;/tab&amp;gt;
			&amp;lt;/tabs&amp;gt;
			&amp;lt;groups&amp;gt;
				&amp;lt;group id="My_Group1" caption="MyGroup" appearsOnAddInTab="false" keytip="MyGroup"&amp;gt;
					&amp;lt;button refID="My_Dockpane1_ShowButton" size="large"/&amp;gt;
				&amp;lt;/group&amp;gt;
			&amp;lt;/groups&amp;gt;
			&amp;lt;controls&amp;gt;
				&amp;lt;button id="My_Dockpane1_ShowButton" caption="My Button" keytip="My Button" className="Dockpane1_ShowButton" loadOnClick="true" smallImage="pack://application:,,,/xy;component/Images/icon_small.png" largeImage="pack://application:,,,/xy;component/Images/icon_large.png"&amp;gt;
					&amp;lt;tooltip heading="Show"&amp;gt;
						Show&amp;lt;disabledText /&amp;gt;
					&amp;lt;/tooltip&amp;gt;
				&amp;lt;/button&amp;gt;
			&amp;lt;/controls&amp;gt;
			&amp;lt;dockPanes&amp;gt;
				&amp;lt;dockPane id="My_Dockpane1" caption="My Dockpane" className="Dockpane1ViewModel" dock="group" dockWith="esri_core_projectDockPane" isDropTarget="false"&amp;gt;
					&amp;lt;content className="Dockpane1View" /&amp;gt;
				&amp;lt;/dockPane&amp;gt;
			&amp;lt;/dockPanes&amp;gt;
		&amp;lt;/insertModule&amp;gt;

		&amp;lt;updateModule refID="esri_core_insertTab"&amp;gt;
			&amp;lt;groups&amp;gt;
				&amp;lt;updateGroup refID="esri_core_projectData"&amp;gt;
										&amp;lt;insertButton refID="My_Dockpane1_ShowButton"/&amp;gt;
				&amp;lt;/updateGroup&amp;gt;
			&amp;lt;/groups&amp;gt;
		&amp;lt;/updateModule&amp;gt;

	&amp;lt;/modules&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 18:20:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-insert-a-custom-button-into-a-esri-core/m-p/1505512#M11874</guid>
      <dc:creator>nadja</dc:creator>
      <dc:date>2024-07-15T18:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert a custom button into a esri core group?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-insert-a-custom-button-into-a-esri-core/m-p/1505516#M11875</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/205210"&gt;@nadja&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pro "module" to update is "esri_core_module"&amp;nbsp; This is the module that creates the "Insert" tab on the Ribbon with the "Project" group.&lt;/P&gt;&lt;P&gt;So in your DAML (line 27), use this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;updateModule refID="esri_core_module"&amp;gt;&lt;/P&gt;&lt;P&gt;instead of&amp;nbsp;&amp;lt;updateModule refID="esri_core_insertTab"&amp;gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 18:28:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-insert-a-custom-button-into-a-esri-core/m-p/1505516#M11875</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2024-07-15T18:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert a custom button into a esri core group?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-insert-a-custom-button-into-a-esri-core/m-p/1505669#M11876</link>
      <description>&lt;P&gt;Thank you, it worked &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2024 05:21:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-insert-a-custom-button-into-a-esri-core/m-p/1505669#M11876</guid>
      <dc:creator>nadja</dc:creator>
      <dc:date>2024-07-16T05:21:21Z</dc:date>
    </item>
  </channel>
</rss>

