<?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 Add Editable Attributes to an Editing Template in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-editable-attributes-to-an-editing-template/m-p/1548488#M12170</link>
    <description>&lt;P&gt;I am currently creating a feature editing template in my code and adding it to a layer. I want my users to be able to edit certain attribute values in the Create Features dock pane when the template is active. Normally I would achieve this by right clicking the template, going to properties -&amp;gt; attributes and checking "Prompt for attribute value" on the&amp;nbsp; ones I want to show up in the dock pane when the user selects the template.&lt;BR /&gt;&lt;BR /&gt;Currently I am able to successfully create and add the EditingTemplate to my layer. But when I activate my new template either through code or through the GUI, the fields for which I have set defaults to do not show up like I want them to. I have inspected edit template community sample as well as the API documentation and I don't see a clear way to do this. Can anyone point me in the right direction?&lt;BR /&gt;&lt;BR /&gt;Below is an example of what I am talking about. I want to make the fields show up like this but totally from the back end when I configure my EditingTemplate and add it to my layer via code.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="attributes.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/117194i30E8C657F4A05ECA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="attributes.png" alt="attributes.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Oct 2024 19:18:55 GMT</pubDate>
    <dc:creator>JoePolaski</dc:creator>
    <dc:date>2024-10-14T19:18:55Z</dc:date>
    <item>
      <title>Add Editable Attributes to an Editing Template</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-editable-attributes-to-an-editing-template/m-p/1548488#M12170</link>
      <description>&lt;P&gt;I am currently creating a feature editing template in my code and adding it to a layer. I want my users to be able to edit certain attribute values in the Create Features dock pane when the template is active. Normally I would achieve this by right clicking the template, going to properties -&amp;gt; attributes and checking "Prompt for attribute value" on the&amp;nbsp; ones I want to show up in the dock pane when the user selects the template.&lt;BR /&gt;&lt;BR /&gt;Currently I am able to successfully create and add the EditingTemplate to my layer. But when I activate my new template either through code or through the GUI, the fields for which I have set defaults to do not show up like I want them to. I have inspected edit template community sample as well as the API documentation and I don't see a clear way to do this. Can anyone point me in the right direction?&lt;BR /&gt;&lt;BR /&gt;Below is an example of what I am talking about. I want to make the fields show up like this but totally from the back end when I configure my EditingTemplate and add it to my layer via code.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="attributes.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/117194i30E8C657F4A05ECA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="attributes.png" alt="attributes.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 19:18:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-editable-attributes-to-an-editing-template/m-p/1548488#M12170</guid>
      <dc:creator>JoePolaski</dc:creator>
      <dc:date>2024-10-14T19:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Add Editable Attributes to an Editing Template</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-editable-attributes-to-an-editing-template/m-p/1549356#M12183</link>
      <description>&lt;P&gt;Hi Joe,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the property you're looking for is part of the CIM definition of the template object.&amp;nbsp; &amp;nbsp;Each EditingTemplate / EditingRowTemplate has a definition which is a CIMRowTemplate.&amp;nbsp; CIMRowTemplate inherits from CIMBasicRowTemplate.&amp;nbsp; &amp;nbsp;There is a RequiredFields property on the CIMBasicRowTemplate object &amp;nbsp;(&lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic74601.html" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic74601.html&lt;/A&gt;).&amp;nbsp; This is different from the property used for setting default values&amp;nbsp; (which is CIMBasicRowTemplate.DefaultValues).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Narelle&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 04:05:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-editable-attributes-to-an-editing-template/m-p/1549356#M12183</guid>
      <dc:creator>NarelleChedzey</dc:creator>
      <dc:date>2024-10-17T04:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add Editable Attributes to an Editing Template</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-editable-attributes-to-an-editing-template/m-p/1552889#M12236</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/54046"&gt;@NarelleChedzey&lt;/a&gt; Thank&amp;nbsp;you so much for the response. I was out of office traveling without cell service or I would have responded sooner. I was able to use this to update my template definition, and it did exactly what I needed.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 17:09:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/add-editable-attributes-to-an-editing-template/m-p/1552889#M12236</guid>
      <dc:creator>JoePolaski</dc:creator>
      <dc:date>2024-10-28T17:09:24Z</dc:date>
    </item>
  </channel>
</rss>

