<?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: After upgrading to ESRI JSAPI 4.16 from 4.15 - unable to track edits on layer  in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202396#M18749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay in getting back to you! Yes, we added it back to the documentation. Unfortunately, we won't be updating the typings for this change - the typings file is so big and it is a lot of work to get updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can instead&amp;nbsp;edit your typings file locally at&amp;nbsp;&lt;SPAN&gt;&lt;CODE&gt;node_modules/@types/arcgis-js-api/index.d.ts&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To add the "edits" event for FeatureLayer:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;On line 284, add&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;CODE&gt; export type FeatureLayerEditsEventHandler = (event: FeatureLayerEditsEvent) =&amp;gt; void; &lt;/CODE&gt;&lt;/DIV&gt;&lt;P&gt;This should go after FeatureFormViewModelValueChangeEventHandler and before FeatureLayerLayerviewCreateErrorEventHandler.&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;Next, on line 11042, add&lt;BR /&gt;&lt;DIV style="color: #f8f8f2; background-color: #272822; font-weight: normal; font-size: 12px;"&gt;&lt;SPAN style="color: #a6e22e;"&gt;on&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #fd971f;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: #f92672;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6db74;"&gt;"edits"&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #a6e22e;"&gt;eventHandler&lt;/SPAN&gt;&lt;SPAN style="color: #f92672;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #a6e22e; text-decoration: underline;"&gt;FeatureLayerEditsEventHandler&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #f92672;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #a6e22e; text-decoration: underline;"&gt;IHandle&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;This should go after updateAttachment() and before on(name: "layerview-create" ...)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Let me know if this works for you!&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;BR /&gt;Anne&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Aug 2020 16:50:41 GMT</pubDate>
    <dc:creator>AnneFitz</dc:creator>
    <dc:date>2020-08-10T16:50:41Z</dc:date>
    <item>
      <title>After upgrading to ESRI JSAPI 4.16 from 4.15 - unable to track edits on layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202392#M18745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV style="color: #000000; background-color: #ffffff;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000; font-family: 'times new roman', times, serif;"&gt;Hi All,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000; font-family: 'times new roman', times, serif;"&gt;I have &lt;SPAN style="background-color: #ffffff;"&gt;upgraded&lt;/SPAN&gt; the ArcGIS jsapi 4.15 to 4.16 and the &amp;nbsp;below has broken.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000; font-family: 'times new roman', times, serif;"&gt;I am trying to track edits on the layer . I am using editor widget and click on the Add/update button on editor widget I am trying to find the newly added feature object id as shown below but it the blow code do not work after the upgrade.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000; font-size: 13px; font-family: 'andale mono', monospace;"&gt;&lt;STRONG&gt;editorVM.featureFormViewModel.layer.on("edits",(event: esri.FeatureLayerEditsEvent) =&amp;gt; {&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000; font-size: 13px; font-family: 'andale mono', monospace;"&gt;&lt;STRONG&gt;if (event.addedFeatures.length &amp;gt; 0) {&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000; font-size: 13px; font-family: 'andale mono', monospace;"&gt;&lt;STRONG&gt; console.log(&amp;nbsp;"event.addedFeatures[0].objectId ")&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000; font-size: 13px; font-family: 'andale mono', monospace;"&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'times new roman', times, serif;"&gt;trying to find any alternative way to track edits on the layer&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'times new roman', times, serif; color: #000000;"&gt;&lt;IMG __jive_id="501145" class="image-1 jive-image" height="110" src="https://community.esri.com/legacyfs/online/501145_pastedImage_18.png" width="204" /&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'times new roman', times, serif; color: #000000;"&gt;(catch the event fired after add or update happen when using editor widget)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'times new roman', times, serif; color: #000000;"&gt;Thank you,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'times new roman', times, serif; color: #000000;"&gt;Divya&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2020 16:14:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202392#M18745</guid>
      <dc:creator>divyabathina</dc:creator>
      <dc:date>2020-07-23T16:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrading to ESRI JSAPI 4.16 from 4.15 - unable to track edits on layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202393#M18746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the inconvenience, this was a bug on our side. We are working on getting the "edits" event added back to the documentation and the typings. We are planning on updating the typings next week. I'll&amp;nbsp;let you know&amp;nbsp;once it has been updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Anne&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2020 22:07:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202393#M18746</guid>
      <dc:creator>AnneFitz</dc:creator>
      <dc:date>2020-07-24T22:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrading to ESRI JSAPI 4.16 from 4.15 - unable to track edits on layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202394#M18747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anne,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for letting me know.&lt;/P&gt;&lt;P&gt;Will be looking forward the Updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2020 11:00:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202394#M18747</guid>
      <dc:creator>divyabathina</dc:creator>
      <dc:date>2020-07-27T11:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrading to ESRI JSAPI 4.16 from 4.15 - unable to track edits on layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202395#M18748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi @&lt;A _jive_internal="true" data-userid="368282" data-username="afitz-esristaff" href="https://community.esri.com/people/afitz-esristaff" style="color: #8ca9cd; border: 0px; font-weight: 200; font-size: 1.286rem;"&gt;Anne Fitz&lt;/A&gt;&lt;SPAN style="color: #a9a9a9; background-color: #ffffff; font-weight: 500;"&gt; &lt;/SPAN&gt;&lt;IMG alt="Employee" class="" height="16" src="https://community.esri.com/resources/statics/rolebadges/roleBadge-4-1007-1416659453731.png" style="color: #a9a9a9; border: 0px; font-weight: 500; font-size: 12.571200370788574px; margin: 0px 2px -3px -1px;" title="Employee" width="16" /&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;I have just noticed. &amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;"edits" event is added back to the documentation. Just wondering if the&amp;nbsp;Typings got updated(As it's still not working for me). If not when can we expect it&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2020 10:50:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202395#M18748</guid>
      <dc:creator>divyabathina</dc:creator>
      <dc:date>2020-08-10T10:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrading to ESRI JSAPI 4.16 from 4.15 - unable to track edits on layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202396#M18749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay in getting back to you! Yes, we added it back to the documentation. Unfortunately, we won't be updating the typings for this change - the typings file is so big and it is a lot of work to get updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can instead&amp;nbsp;edit your typings file locally at&amp;nbsp;&lt;SPAN&gt;&lt;CODE&gt;node_modules/@types/arcgis-js-api/index.d.ts&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To add the "edits" event for FeatureLayer:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;On line 284, add&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;CODE&gt; export type FeatureLayerEditsEventHandler = (event: FeatureLayerEditsEvent) =&amp;gt; void; &lt;/CODE&gt;&lt;/DIV&gt;&lt;P&gt;This should go after FeatureFormViewModelValueChangeEventHandler and before FeatureLayerLayerviewCreateErrorEventHandler.&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;Next, on line 11042, add&lt;BR /&gt;&lt;DIV style="color: #f8f8f2; background-color: #272822; font-weight: normal; font-size: 12px;"&gt;&lt;SPAN style="color: #a6e22e;"&gt;on&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #fd971f;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="color: #f92672;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #e6db74;"&gt;"edits"&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #a6e22e;"&gt;eventHandler&lt;/SPAN&gt;&lt;SPAN style="color: #f92672;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #a6e22e; text-decoration: underline;"&gt;FeatureLayerEditsEventHandler&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #f92672;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #a6e22e; text-decoration: underline;"&gt;IHandle&lt;/SPAN&gt;&lt;SPAN style="color: #f8f8f2;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;This should go after updateAttachment() and before on(name: "layerview-create" ...)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Let me know if this works for you!&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;BR /&gt;Anne&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2020 16:50:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202396#M18749</guid>
      <dc:creator>AnneFitz</dc:creator>
      <dc:date>2020-08-10T16:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: After upgrading to ESRI JSAPI 4.16 from 4.15 - unable to track edits on layer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202397#M18750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anne,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for your support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I have added the above details as you mentioned. I have added below line at &lt;STRONG&gt;11369&lt;/STRONG&gt; after&amp;nbsp;&lt;SPAN style="color: #000000; font-family: 'andale mono', monospace;"&gt;export interface EditingInfo &lt;SPAN style="font-family: helvetica, arial, sans-serif;"&gt;and before&lt;/SPAN&gt;&amp;nbsp;export interface FeatureEditResult.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'andale mono', monospace;"&gt;this has removed all the errors.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV style="color: #000000; background-color: #ffffff;"&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000; background-color: #ffffff;"&gt;&lt;DIV style="color: #000000;"&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="color: #af00db;"&gt;export&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;interface&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #267f99;"&gt;FeatureLayerEditsEvent&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; {&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #001080;"&gt;addedAttachments&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #267f99;"&gt;FeatureEditResult&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;[];&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV style="color: #000000;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #001080;"&gt;addedFeatures&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #267f99;"&gt;FeatureEditResult&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;[];&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV style="color: #000000;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #001080;"&gt;deletedAttachments&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #267f99;"&gt;FeatureEditResult&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;[];&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV style="color: #000000;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #001080;"&gt;deletedFeatures&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #267f99;"&gt;FeatureEditResult&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;[];&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV style="color: #000000;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #001080;"&gt;updatedAttachments&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #267f99;"&gt;FeatureEditResult&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;[];&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV style="color: #000000;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #001080;"&gt;updatedFeatures&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #267f99;"&gt;FeatureEditResult&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;[];&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt; }&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000;"&gt;&lt;/DIV&gt;&lt;DIV style="color: #000000;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000;"&gt;Thanks ,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #000000;"&gt;Divya&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 11:34:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/after-upgrading-to-esri-jsapi-4-16-from-4-15/m-p/202397#M18750</guid>
      <dc:creator>divyabathina</dc:creator>
      <dc:date>2020-08-11T11:34:39Z</dc:date>
    </item>
  </channel>
</rss>

