<?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: New Map Viewer Does Not Honor Field Configurations in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1098255#M42167</link>
    <description>&lt;P&gt;Bumping again for visibility. Any fixes on this yet or documentation? My work flow includes multiple maps hitting the same hosted feature layer (haven't figured out hosted views yet) and I was using this for different field editing for different maps/ users. Maybe this is a way to force hosted views? If there is a better workflow using the New Map Viewer I'm all ears.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Sep 2021 22:29:46 GMT</pubDate>
    <dc:creator>BrookeAumann</dc:creator>
    <dc:date>2021-09-14T22:29:46Z</dc:date>
    <item>
      <title>New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1050613#M39664</link>
      <description>&lt;P&gt;The problem that I'm having is that when using the New Map Viewer in ArcGIS Online to edit data in a web map, folks are able to view and edit all fields of the layer, even fields that have been set to not visible and/or not editable.&lt;/P&gt;&lt;P&gt;Background: I published layers and created views. After I created the views in AGOL, from the Data tab, I configured the pop-up to make some fields not editable but visible, and some fields not editable or visible, and several fields both editable and visible. Then I added those layers to a web map (classic viewer) and saved it.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Behavior in classic map viewer:&lt;/STRONG&gt; when a user clicks on a feature and edits it, or adds a new feature, they do not see any fields that are set to not visible, and if the field is set to visible but not editable, they can see it, but they cannot add data to it (it's grayed out).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Behavior in new map viewer:&lt;/STRONG&gt; when user clicks on Edit on the right panel and then chooses either edit a feature or add a feature, &lt;STRONG&gt;they have access to view and edit every field of the layer&lt;/STRONG&gt;, regardless of the visibility and editability of the pop-up configuration. Now I will note that when a user simply clicks on a feature to view the information, the pop-up configuration is honored as far as which fields are visible. I do not see anywhere in the new map viewer where it is honoring the "Edit" property of the pop-up configuration that is set at the layer level.&lt;/P&gt;&lt;P&gt;If there is a way to restrict the user from editing certain fields within a layer in the new map viewer, please let me know. However, this could potentially take a long time as we have so many layers and maps that would need to be updated. I'm concerned that our users all have access to the new map viewer and can now edit every field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/469964"&gt;@jtmouw1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 12:55:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1050613#M39664</guid>
      <dc:creator>FaithSJohnson</dc:creator>
      <dc:date>2021-04-23T12:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1050659#M39667</link>
      <description>&lt;P&gt;I can confirm similar behavior in my maps. If the layer is editable, all visible fields are editable.&lt;/P&gt;&lt;P&gt;The workaround here (warning: it's tedious) is that recently AGOL added the ability to toggle editing &lt;EM&gt;per field&lt;/EM&gt;. So I guess it's more accurate to say, if the layer is editable, all visible fields are editable &lt;EM&gt;if their settings allow it&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;Item → Data → Fields → Field → Editable&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1619186141050.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/11670iC5AF8E83872DF985/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_0-1619186141050.png" alt="jcarlson_0-1619186141050.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It's a really fantastic addition, and you'd only have to change it once per layer / view, but there's not really another way around it at this point.&lt;/P&gt;&lt;P&gt;To make it less tedious, you &lt;EM&gt;could&lt;/EM&gt; do this via the Python API. If you look at &lt;STRONG&gt;FeatureLayer.manager.properties&lt;/STRONG&gt;, you can find the fields section, which looks like this (emphasis added):&lt;/P&gt;&lt;PRE&gt;"fields": [
    {
      "name": "OBJECTID",
      "type": "esriFieldTypeOID",
      "actualType": "int",
      "alias": "OBJECTID",
      "sqlType": "sqlTypeInteger",
      "nullable": false,
      &lt;STRONG&gt;"editable": false,&lt;/STRONG&gt;
      "visible": true,
      "domain": null,
      "defaultValue": null
    },&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Using &lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.features.managers.html#arcgis.features.managers.FeatureLayerManager.update_definition" target="_self"&gt;update_definition&lt;/A&gt;, you can adjust the editable property that way as well. Depending on how many layers you're trying to update, it might be quicker to do up a python loop.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 14:09:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1050659#M39667</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-04-23T14:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1079458#M41229</link>
      <description>&lt;P&gt;It seems this solution only works for 'hosted' layers.&amp;nbsp; I'm using feature services from our SDE.&amp;nbsp; Does anyone know how to disable editing of specific fields either in the service creation or ideally in AGOL?&amp;nbsp; Hopefully we'll get field level control in the new Map Viewer soon.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 21:38:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1079458#M41229</guid>
      <dc:creator>ChristySpielman</dc:creator>
      <dc:date>2021-07-15T21:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1083644#M41461</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/477605"&gt;@FaithSJohnson&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Have you found a way to disable editing on specific fields in the new Map Viewer?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 18:09:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1083644#M41461</guid>
      <dc:creator>MarkEastwood</dc:creator>
      <dc:date>2021-07-28T18:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1083673#M41462</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/160149"&gt;@MarkEastwood&lt;/a&gt;&amp;nbsp;- look at the reply to my comment from&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;. There is a way to configure it at the layer level.&lt;/P&gt;&lt;P&gt;Unfortunately this has to be done to all of our views, which is a-plenty. In the meantime, if people open one of our maps in the new map viewer, they have full edit access to all of the fields!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 18:53:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1083673#M41462</guid>
      <dc:creator>FaithSJohnson</dc:creator>
      <dc:date>2021-07-28T18:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1098255#M42167</link>
      <description>&lt;P&gt;Bumping again for visibility. Any fixes on this yet or documentation? My work flow includes multiple maps hitting the same hosted feature layer (haven't figured out hosted views yet) and I was using this for different field editing for different maps/ users. Maybe this is a way to force hosted views? If there is a better workflow using the New Map Viewer I'm all ears.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 22:29:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1098255#M42167</guid>
      <dc:creator>BrookeAumann</dc:creator>
      <dc:date>2021-09-14T22:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1100176#M42243</link>
      <description>&lt;P&gt;I'm also having issues with this.&amp;nbsp; I have a map I created in Map Viewer Classic.&amp;nbsp; By default maps now open in the new viewer so they do not honour the attribute editing settings I selected.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Sep 2021 04:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1100176#M42243</guid>
      <dc:creator>NaomiBegg</dc:creator>
      <dc:date>2021-09-21T04:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1107004#M42540</link>
      <description>&lt;P&gt;Yeah, it is a really nice addition, however the advantage of the popup settings is that fields can be editable or not editable in different web maps. This setting applies to all webmaps a layer is in. I really need this option, back to classic!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Oct 2021 12:01:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1107004#M42540</guid>
      <dc:creator>PeterGoedbloed1</dc:creator>
      <dc:date>2021-10-13T12:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1109176#M42661</link>
      <description>&lt;P&gt;Same issue here.&amp;nbsp; Setting the &lt;EM&gt;Editable&lt;/EM&gt; setting on the layer itself is not an option as some fields need to be editable at other stages of our workflow.&lt;/P&gt;&lt;P&gt;Here is my configured pop-up:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JimW_0-1634733611784.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25612i1BE858879949036A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JimW_0-1634733611784.png" alt="JimW_0-1634733611784.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When someone goes to edit this same point every single field in the feature layer is available for editing.&amp;nbsp; I didn't include all fields but this demonstrates the issue.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-10-20_8-38-53.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25616i934EEF6953ED8709/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-10-20_8-38-53.png" alt="2021-10-20_8-38-53.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is not a good thing.&amp;nbsp; I'd like to see my pop-up as configured above but only the fields that can be editable will be editable.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Oct 2021 13:06:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1109176#M42661</guid>
      <dc:creator>JimW</dc:creator>
      <dc:date>2021-10-20T13:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1122207#M43175</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like this issue is caused by a defect in Map Viewer. A bug has been logged against this behavior:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;BUG-000139878 - Hidden fields are visible and editable when editing a feature service in Map Viewer.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;MJ&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 15:11:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1122207#M43175</guid>
      <dc:creator>MJBiazar</dc:creator>
      <dc:date>2021-12-02T15:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1122225#M43180</link>
      <description>&lt;P&gt;Is the fix planned for an upcoming release?&amp;nbsp;&lt;/P&gt;&lt;P&gt;This continues to be a problem for us.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 15:46:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1122225#M43180</guid>
      <dc:creator>FaithSJohnson</dc:creator>
      <dc:date>2021-12-02T15:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1122330#M43186</link>
      <description>&lt;P&gt;Yes, this continues to be a problem for us too.&amp;nbsp; For example, I need users to be able to see the Unique ID of records but I don't want them editing those of course!&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 20:27:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1122330#M43186</guid>
      <dc:creator>ChristySpielman</dc:creator>
      <dc:date>2021-12-02T20:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1123534#M43239</link>
      <description>&lt;P&gt;Yikes! This is a pretty bad bug. With this bug there is no more data integrity! We have users that use the Old Map Viewer, the New Map Viewer and mobile devices. So far from what I can tell this bug only has affects within the New Map Viewer. So if I don't use the New Map Viewer can I be assured that all my layers within all my maps will continue to honor the 'configure attributes' settings I've applied? I hope this is a high priority fix for ESRI.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 20:07:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1123534#M43239</guid>
      <dc:creator>GrantHoward1</dc:creator>
      <dc:date>2021-12-07T20:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1123631#M43243</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/133181"&gt;@MJBiazar&lt;/a&gt;&amp;nbsp;, thanks for this confirmation. Did this work at one point? Memory tells me it did... In ay case, do when the bug will be addressed? It would be great to have the edit hot link on the popup to edit attributes giving the user fewer clicks just to get to the attributes.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 22:41:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1123631#M43243</guid>
      <dc:creator>DavidRichey</dc:creator>
      <dc:date>2021-12-07T22:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124037#M43258</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;This issue is planned to be addressed to some extent in the upcoming release (currently planned for tonight 12/8). With this fix, Map Viewer will honor the attribute fields configuration and won't allow editing fields that are set to not-editable in the pop up configuration for the feature layer.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29168iFC913B43AEEEFA14/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1.jpg" alt="1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29169iC2E1BCAD2B6D7EBA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2.jpg" alt="2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;In order to hide some attribute fields, you can use view layers and set attribute definitions. By doing so, the fields that are not included in the view layer won't be visible and hence not editable in the Map Viewer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;(*In the new release creating a view layer interface has been updated to provide a better user experience)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29170iD810BAFA935A4E95/image-size/medium?v=v2&amp;amp;px=400" role="button" title="3.jpg" alt="3.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29171iF3D57292C8EBCF2C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="4.jpg" alt="4.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;And... here is the more exciting part and a sneak peak to a new functionality in this ArcGIS Online release which provides a better experience for controlling fields visibility and editability.&lt;/P&gt;&lt;P&gt;Now you can use Forms (similar to what you might be already familiar with in Field Maps) in Map Viewer to control which field should be visible/editable on your map when adding/editing features.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="5.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29172i3661169C219CBCF0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="5.jpg" alt="5.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29174iF4B6784AC20031DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="6.jpg" alt="6.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="7.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29173i4F0BC21DBC840E62/image-size/medium?v=v2&amp;amp;px=400" role="button" title="7.jpg" alt="7.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="8.jpg" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29175iC6F0514581710610/image-size/medium?v=v2&amp;amp;px=400" role="button" title="8.jpg" alt="8.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I hope this answers your some of your questions and provides a viable solution. Please feel free to post any additional questions here or by reaching out to Technical Support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;MJ&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 21:28:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124037#M43258</guid>
      <dc:creator>MJBiazar</dc:creator>
      <dc:date>2021-12-08T21:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124896#M43303</link>
      <description>&lt;P&gt;I checked the new map viewer with an existing map and things look great! When I edit a feature, I can &lt;STRONG&gt;see&lt;/STRONG&gt; fields that are set to visible, but not editable, and I &lt;STRONG&gt;cannot edit&lt;/STRONG&gt; them. I cannot see fields that are set to not visible (I don't have any fields set to not visible but editable). It's exactly how I expected it to work.&lt;/P&gt;&lt;P&gt;MJ - thank you for the thorough response with screenshots. I'm so pleased that Esri finally fixed this! I like the new form capability as well, that will help us make a better editing environment in AGOL.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 16:09:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124896#M43303</guid>
      <dc:creator>FaithSJohnson</dc:creator>
      <dc:date>2021-12-10T16:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124912#M43304</link>
      <description>&lt;P&gt;This appears to be fixed in the New Map Viewer.&amp;nbsp; However in the Classic Map Viewer, I am still seeing cases where this is not fixed. See screenshots below.&amp;nbsp; This is an address feature service published from our Enterprise.&amp;nbsp; All attributes are unchecked to disable editing of any attributes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can definitely still go into edit mode and expose every field for editing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the update&amp;nbsp;@&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/133181"&gt;@MJBiazar&lt;/a&gt;&amp;nbsp;, but ESRI may want to look into this some more specifically in Classic Maps.&amp;nbsp;&amp;nbsp;I'm not sure why&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/397461"&gt;@GrantHoward1&lt;/a&gt;&amp;nbsp;was not seeing this in the classic map viewer but I certainly am. I&amp;nbsp; agree that this is&amp;nbsp;a major oversight that could have some catastrophic consequences.&amp;nbsp; We as an organization have many edit apps out there and to think that everything is potentially exposed for editing every field is more than unsettling.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JTLancer_0-1639152983275.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29407i99201C850463C7AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JTLancer_0-1639152983275.png" alt="JTLancer_0-1639152983275.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JTLancer_1-1639153048163.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29408iE5ACF52128274465/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JTLancer_1-1639153048163.png" alt="JTLancer_1-1639153048163.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 16:36:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124912#M43304</guid>
      <dc:creator>JTLancer</dc:creator>
      <dc:date>2021-12-10T16:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124940#M43305</link>
      <description>&lt;P&gt;Good Morning,&lt;BR /&gt;I agree with &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/477605"&gt;@FaithSJohnson&lt;/a&gt;&amp;nbsp;- thanks for ESRI for fixing this issue, and I too am excited to try using the form capabilities in the new map viewer.&lt;BR /&gt;&lt;BR /&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/503656"&gt;@JTLancer&lt;/a&gt;&amp;nbsp;, I just checked a couple of layers in a couple different web maps in the classic map viewer and I am not seeing any issues regarding the attribute settings for 'display' &amp;amp; 'edit' settings like you have in your screenshot. I also only previously saw the issues in the new map viewer. I never did see those issues in the classic map viewer. The layers I checked were hosted features.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Grant&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 17:39:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124940#M43305</guid>
      <dc:creator>GrantHoward1</dc:creator>
      <dc:date>2021-12-10T17:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124949#M43307</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/397461"&gt;@GrantHoward1&lt;/a&gt;&amp;nbsp; After some further testing on my end, the issue appears to be fixed when I create a new map and use the same feature service and modify the display/edit attribute settings.&amp;nbsp; I wonder if the maps that I created before were during a window of time when this was not working and is persisting. The maps that I have tested were both created over the last couple of weeks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyhow, I will follow up with ESRI support regarding the issue.&amp;nbsp; Thanks for your feedback.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 17:49:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1124949#M43307</guid>
      <dc:creator>JTLancer</dc:creator>
      <dc:date>2021-12-10T17:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: New Map Viewer Does Not Honor Field Configurations</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1217914#M48153</link>
      <description>&lt;P&gt;Any advancements on this issue?&amp;nbsp; I use Enterprise which I have found is last to get some of the updates that AGOL receives.&amp;nbsp; I've reviewed the potential solutions and it doesn't appear that these are options currently.&amp;nbsp; It's far from ideal when having to use non technical staff to create and edit data.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 15:55:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/new-map-viewer-does-not-honor-field-configurations/m-p/1217914#M48153</guid>
      <dc:creator>CFrost</dc:creator>
      <dc:date>2022-09-30T15:55:43Z</dc:date>
    </item>
  </channel>
</rss>

