<?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: Editor Widget does not updates in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1356652#M83006</link>
    <description>&lt;P&gt;I am encountering the same problem with the ArcGIS API Editor widget for JavaScript version 4.27.0. Like you, when I click the update button, no HTTP request is initiated and no action is taken.&lt;/P&gt;&lt;P&gt;Here are a few things I have checked so far:&lt;/P&gt;&lt;P&gt;Making sure the layers have editing enabled on the server side.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'm still working on the problem, but I was wondering if you've had any success since your post. If you've found a solution, I'd love to hear about it.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;async initializeEditor() {
    const [Editor] = await loadModules(['esri/widgets/Editor']);
    await Variables._self._view.when();
    const layers = Variables._self.map.layers.toArray();

    const snappingOptions = {
      enabled: true,
      selfEnabled: true,
      featureEnabled: true,
      updateEnabled: true,
      featureSources: layers.map((layer) =&amp;gt; ({ layer })),
    };
    const editor = new Editor({
      view: Variables._self._view,
      updateEnabled: true,
      snappingOptions: snappingOptions,
    });
    Variables._self._view.ui.add(editor, 'top-right');
  }&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 04 Dec 2023 23:59:53 GMT</pubDate>
    <dc:creator>AlfredoDeLaAsuncion</dc:creator>
    <dc:date>2023-12-04T23:59:53Z</dc:date>
    <item>
      <title>Editor Widget does not updates</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/241586#M22393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got problem.&lt;/P&gt;&lt;P&gt;I can add new feature without problem, but when i want to select and update feature it does not select to update.&lt;/P&gt;&lt;P&gt;I use JS 4.15 Version.&lt;/P&gt;&lt;P&gt;Here is a code i use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help please&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;//Add Regulator&lt;/SPAN&gt;
     &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; urduli &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;FeatureLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;url&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"http://LocalHost:6080/arcgis/rest/services/test/aragvi_service/FeatureServer/4"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
             title&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Regulator"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
             visible&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
             outFields&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"*"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
     map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Regulator&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 

&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; editor &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Editor&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
  view&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; view&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  layerInfos&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    layer&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Regulator&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// pass in the feature layer&lt;/SPAN&gt;
    fieldConfig&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// Specify which fields to configure&lt;/SPAN&gt;
      &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        name&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Comments"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
        label&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"კომენტარი"&lt;/SPAN&gt;
      &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    enabled&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// default is true, set to false to disable editing functionality&lt;/SPAN&gt;
    addEnabled&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// default is true, set to false to disable the ability to add a new feature&lt;/SPAN&gt;
    updateEnabled&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// default is true, set to false to disable the ability to edit an existing feature&lt;/SPAN&gt;
    deleteEnabled&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// default is true, set to false to disable the ability to delete features&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

view&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ui&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;editor&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"top-right"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 ‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:07:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/241586#M22393</guid>
      <dc:creator>Vakhtang_Zubiashvili</dc:creator>
      <dc:date>2021-12-11T12:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget does not updates</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/241587#M22394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One thing to check is that your service allows for updates. Go into ArcGIS Server manager and examine the service properties to see if the update operation is permitted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is usually switched on by default for Feature services, so it would be only if you or someone turned it off.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2020 01:59:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/241587#M22394</guid>
      <dc:creator>mdonnelly</dc:creator>
      <dc:date>2020-05-14T01:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget does not updates</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/241588#M22395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/83159"&gt;vakhtang zubiashvili&lt;/A&gt;‌, to debug this, open your developer tool, F12 on chrome&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you click on ok/add/update on your editor, it will trigger a http request to your feature layer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN class="" style="color: #669900; border: 0px; font-weight: inherit;"&gt;&lt;A href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2FLocalHost%3A6080%2Farcgis%2Frest%2Fservices%2Ftest%2Faragvi_service%2FFeatureServer%2F4" rel="nofollow" style="color: #287433; border: 0px; font-weight: inherit; text-decoration: none; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;http://LocalHost:6080/arcgis/rest/services/test/aragvi_service/FeatureServer/4&lt;BR /&gt;&lt;BR /&gt;&lt;/A&gt; &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN style="border: 0px; color: #3d3d3d; font-weight: inherit; "&gt;and hit the rest endpoint I think it is applyEdit&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN style="border: 0px; color: #3d3d3d; font-weight: inherit; "&gt;You can copy that URL and change the format from f=json to f=html which will present you with a HTML page for updating the feature. You can then debug from there to know what went wrong.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN style="border: 0px; color: #3d3d3d; font-weight: inherit; "&gt;Hope that helps&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2020 05:33:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/241588#M22395</guid>
      <dc:creator>VictorTey</dc:creator>
      <dc:date>2020-05-14T05:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget does not updates</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1318206#M81969</link>
      <description>&lt;P&gt;I'm also facing this issue. The update is not working. Once I click update, it doesn't trigger any HTTP requests! Nothing happens.&lt;/P&gt;&lt;P&gt;How can I fix this? I'm using version&amp;nbsp;4.27.0&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 01:33:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1318206#M81969</guid>
      <dc:creator>MohammedZaki</dc:creator>
      <dc:date>2023-08-14T01:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget does not updates</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1356652#M83006</link>
      <description>&lt;P&gt;I am encountering the same problem with the ArcGIS API Editor widget for JavaScript version 4.27.0. Like you, when I click the update button, no HTTP request is initiated and no action is taken.&lt;/P&gt;&lt;P&gt;Here are a few things I have checked so far:&lt;/P&gt;&lt;P&gt;Making sure the layers have editing enabled on the server side.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'm still working on the problem, but I was wondering if you've had any success since your post. If you've found a solution, I'd love to hear about it.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;async initializeEditor() {
    const [Editor] = await loadModules(['esri/widgets/Editor']);
    await Variables._self._view.when();
    const layers = Variables._self.map.layers.toArray();

    const snappingOptions = {
      enabled: true,
      selfEnabled: true,
      featureEnabled: true,
      updateEnabled: true,
      featureSources: layers.map((layer) =&amp;gt; ({ layer })),
    };
    const editor = new Editor({
      view: Variables._self._view,
      updateEnabled: true,
      snappingOptions: snappingOptions,
    });
    Variables._self._view.ui.add(editor, 'top-right');
  }&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 04 Dec 2023 23:59:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1356652#M83006</guid>
      <dc:creator>AlfredoDeLaAsuncion</dc:creator>
      <dc:date>2023-12-04T23:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget does not updates</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1369443#M83332</link>
      <description>&lt;P&gt;I see that this topic is stopped, any solution?&lt;BR /&gt;Any progress on this topic?&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2024 08:52:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1369443#M83332</guid>
      <dc:creator>SergioSalmeron_NTT</dc:creator>
      <dc:date>2024-01-12T08:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget does not updates</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1397130#M84036</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the solution is here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/update-workflow-in-editor-widget-issue/m-p/1390713#M83848" target="_blank" rel="noopener"&gt;https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/update-workflow-in-editor-widget-issue/m-p/1390713#M83848&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 06:43:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-updates/m-p/1397130#M84036</guid>
      <dc:creator>SergioSalmeron_NTT</dc:creator>
      <dc:date>2024-03-18T06:43:48Z</dc:date>
    </item>
  </channel>
</rss>

