<?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 Customizing Field Entry in GeoForm in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645953#M32172</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I am using the GeoForm so that our Permitting department can add address points that do not already exist and apply permits to those newly created address points. The problems I am having&amp;nbsp;are that :&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Point Identification&lt;/STRONG&gt;&lt;BR /&gt;We have exactly TWO entry points for creating new addresses and we need to differentiate between them when viewing them. We have a single user converting ALL of our address points using ESRI Desktop 10.5.1 and then there will be this GeoForm available internally only. I need to have ALL GeoForm entries to have a SiteAddID field that shows it's from the GeoForm... so adding "GF" to the ID is Step One of our needs.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;SiteAddID Customization&lt;/STRONG&gt;&lt;BR /&gt;I have tried a number of options for customizing the SiteAddID field entry from the GeoForm. We have a proprietary system that connects SiteAddressPoints to Permits and it does this using the SiteAddID field. I need to customize the entries for this field through the GeoForm but it's not working.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my current attempt to adjust this field was to try to have the field be invisible to the end user of the GeoForm and create a DefaultValue for the field inside the GeoForm config/default.js file. I figure if I can adjust this then I could use JS to get the adjustment I wanted. But nothing I do causes the defaultValue to change anything if the field is invisible. I do NOT want the user to even see the SiteAddID field because I fear they will cause issues somehow. Just make it invisible and modify the input... Much like using the Attribute Assistant on Desktop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2018 19:21:26 GMT</pubDate>
    <dc:creator>BrianO_keefe</dc:creator>
    <dc:date>2018-04-04T19:21:26Z</dc:date>
    <item>
      <title>Customizing Field Entry in GeoForm</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645953#M32172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I am using the GeoForm so that our Permitting department can add address points that do not already exist and apply permits to those newly created address points. The problems I am having&amp;nbsp;are that :&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Point Identification&lt;/STRONG&gt;&lt;BR /&gt;We have exactly TWO entry points for creating new addresses and we need to differentiate between them when viewing them. We have a single user converting ALL of our address points using ESRI Desktop 10.5.1 and then there will be this GeoForm available internally only. I need to have ALL GeoForm entries to have a SiteAddID field that shows it's from the GeoForm... so adding "GF" to the ID is Step One of our needs.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;SiteAddID Customization&lt;/STRONG&gt;&lt;BR /&gt;I have tried a number of options for customizing the SiteAddID field entry from the GeoForm. We have a proprietary system that connects SiteAddressPoints to Permits and it does this using the SiteAddID field. I need to customize the entries for this field through the GeoForm but it's not working.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my current attempt to adjust this field was to try to have the field be invisible to the end user of the GeoForm and create a DefaultValue for the field inside the GeoForm config/default.js file. I figure if I can adjust this then I could use JS to get the adjustment I wanted. But nothing I do causes the defaultValue to change anything if the field is invisible. I do NOT want the user to even see the SiteAddID field because I fear they will cause issues somehow. Just make it invisible and modify the input... Much like using the Attribute Assistant on Desktop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 19:21:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645953#M32172</guid>
      <dc:creator>BrianO_keefe</dc:creator>
      <dc:date>2018-04-04T19:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing Field Entry in GeoForm</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645954#M32173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I've tried adjusting the JSON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"name": "SITEADDID", // field id&lt;BR /&gt; "alias": "Site Address ID", // label&lt;BR /&gt; "fieldDescription": "The ID of the address point", // Help text&lt;BR /&gt; &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;"visible": false, // show this field?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt; "typeField": false, // subtype field?&lt;BR /&gt; "tooltip": "", // placeholder text&lt;BR /&gt; "displayType": "text", // text, checkbox, radio, textarea, url, email&lt;BR /&gt; "defaultValue": "GF" + new Date().getTime(),&lt;BR /&gt; &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;"locked": true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;You would THINK that changing Visible to False would NOT affect this field working as it is entered in the JSON... But it does. If you make this field VISIBLE:FALSE then the DEFAULTVALUE that I created doesn't actually enter into the newly created Address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if I turn is VISIBLE:TRUE then the enduser can change the contents of the field &lt;STRONG&gt;NO MATTER WHAT THE LOCKED ATTRIBUTE IS SET TO&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot begin to describe my frustration level.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 20:08:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645954#M32173</guid>
      <dc:creator>BrianO_keefe</dc:creator>
      <dc:date>2018-04-04T20:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing Field Entry in GeoForm</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645955#M32174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can see that the field doesn't get greyed out.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://youtu.be/7kR-792vTzA" title="https://youtu.be/7kR-792vTzA"&gt;Pending Addressing - Edited - YouTube&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you can see that even tho it is locked, I still edited it via the GeoForm.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://youtu.be/S6x_A62wDrg" title="https://youtu.be/S6x_A62wDrg"&gt;Apr 4, 2018 4:51 PM - Edited - YouTube&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frustrated beyond belief.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 21:57:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645955#M32174</guid>
      <dc:creator>BrianO_keefe</dc:creator>
      <dc:date>2018-04-04T21:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing Field Entry in GeoForm</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645956#M32175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;driskull corrected the situation by editing MAIN.JS in the GeoForm.&lt;/P&gt;&lt;P&gt;Here is his correction.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/Esri/geoform-template-js/issues/550" title="https://github.com/Esri/geoform-template-js/issues/550"&gt;default.js : locked attribute doesn't work · Issue #550 · Esri/geoform-template-js · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 17:28:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/customizing-field-entry-in-geoform/m-p/645956#M32175</guid>
      <dc:creator>BrianO_keefe</dc:creator>
      <dc:date>2018-04-05T17:28:16Z</dc:date>
    </item>
  </channel>
</rss>

