<?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: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119880#M11153</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We fixed this in 3.0:&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jshelp/new_v30.html" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/help/jshelp/new_v30.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Specifically:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;NIM081335: Feature Layer: applyEdits throws error when called before adding the layer to map&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2012 14:43:20 GMT</pubDate>
    <dc:creator>derekswingley1</dc:creator>
    <dc:date>2012-09-27T14:43:20Z</dc:date>
    <item>
      <title>JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119866#M11139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone had any issues running applyEdits on feature layers since the update to version 2.8 of the API?&amp;nbsp; I find that with versions 2.7 or earlier, I could execute applyEdits() on a FeatureLayer object, even if the layer hasn't been added to a map, with essentially two lines of code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; var featureLayer = new esri.layers.FeatureLayer(url,{&amp;lt;opts&amp;gt;});&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; featureLayer.applyEdits([newGraphic],null,null,function(addResults){ // verify results });&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, when I try this in 2.8, and if the layer is not already added to a map object, I get an error message that looks like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;----- TypeError: arr is undefined http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.8 Line 14 -----&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've found that the only way to work around this is to actually add the layer to the map (even if I don't necessarily want it displayed to the user), then run applyEdits...but this makes things a bit more complicated.&amp;nbsp; Basically, after creating the layer, I need to connect to the onLayerAddResult function and run applyEdits within that callback event...when the callback is fired, I can remove the layer again (if I don't want to keep it in the map), and disconnect from the event.&amp;nbsp; Once that is setup, I finally add the layer to the map and wait for the callback to execute.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;var featureLayer = new esri.layers.FeatureLayer(url,{&amp;lt;opts&amp;gt;,visible:false}); var listener = dojo.connect(map,"onLayerAddResult",this,function(layer){&amp;nbsp; if (layer==featureLayer)&amp;nbsp; { &amp;nbsp; dojo.disconnect(listener); &amp;nbsp; featureLayer.applyEdits([newGraphic],null,null,function(addResults){ // verify results }); &amp;nbsp; map.removeLayer(featureLayer);&amp;nbsp; } }); map.addLayer(featureLayer);&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My guess is that this is a result of one of the two following fixes/enhancements listed for version 2.8:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;NIM079205: Enhance feature layer to support editor tracking&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;NIM079209: Do not serialize non-editable fields from a feature layer in applyEdits&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;BR /&gt;&lt;SPAN&gt;If it's the latter, then I would suspect that the error is happening because the FeatureLayer has not yet retrieved the metadata from the FeatureLayer's REST service, and that this only happens after the layer gets added to a map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Should it still be possible to applyEdits on a layer that is not added to a map object first?&amp;nbsp; Alternatively, is there a better way I can do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any advice.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2012 19:39:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119866#M11139</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-04-02T19:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119867#M11140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;Should it still be possible to applyEdits on a layer that is not added to a map object first?&amp;nbsp; Alternatively, is there a better way I can do this?&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes. This still works for me at 2.8:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/aZjHR/"&gt;http://jsfiddle.net/aZjHR/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you post a more complete code sample that shows this problem?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2012 16:55:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119867#M11140</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-04-03T16:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119868#M11141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm not sure that the example you're linking to is comparable - in my case, the FeatureLayer points to a REST url.&amp;nbsp; In the sample you linked to, the FeatureLayer is being created from an empty FeatureCollection object that has no association with an ArcGIS REST feature service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll try to put together a sample, but I don't have an ArcGIS service that I can easily open up to the public for applying edits...any ideas of what I could use for a substitute?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2012 17:44:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119868#M11141</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-04-03T17:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119869#M11142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Actually, if I take that exact sample, and substitute these lines:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer = new esri.layers.FeatureLayer(featureCollection, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: 'flickrLayer',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoTemplate: popupTemplate
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;with this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer = new esri.layers.FeatureLayer("http://localhost/ArcGIS/rest/services/MapName/FeatureServer");
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then I click run in the jsFiddle interface, I can reproduce the same error mentioned above (in Firefox/Firebug).&amp;nbsp; So if you have a FeatureServer that you can drop into that spot in your code, you might be able to see the same thing I'm seeing.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:59:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119869#M11142</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T06:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119870#M11143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I will take a look and get back to you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2012 19:38:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119870#M11143</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-04-03T19:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119871#M11144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Has anyone been able to confirm this issue yet, or are there any recommended solutions besides my workaround outlined above?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2012 15:52:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119871#M11144</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-04-16T15:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119872#M11145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Apologies for not getting back to you. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is indeed a bug. When a feature layer isn't added to the map, the edit is successful, but internally the applyEdits success callback is trying to draw the feature. Since the feature layer isn't added to the map, this isn't possible. We'll try to get a fix in the next release. Until then, please use the workaround you outlined above. I'll also make a note to post back here once I have a public bug tracking ID.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2012 17:43:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119872#M11145</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-04-16T17:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119873#M11146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have exact error that prevents me updating from 2.6 to 2.8.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Look forward to seeing this fixed in next release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Code break here&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var attr = { "USAGE": status, "ACTION":"update"};&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var newGraphic = new esri.Graphic(Point, null, attr, null);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;featuureLayer.applyEdits([newGraphic], null, null);&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 14:16:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119873#M11146</guid>
      <dc:creator>gisscconsulting</dc:creator>
      <dc:date>2012-04-19T14:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119874#M11147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have exact error that prevents me updating from 2.6 to 2.8.&lt;BR /&gt;&lt;BR /&gt;Look forward to seeing this fixed in next release.&lt;BR /&gt;&lt;BR /&gt;Code break here&lt;BR /&gt;&lt;BR /&gt;var attr = { "USAGE": status, "ACTION":"update"};&lt;BR /&gt;&lt;BR /&gt;var newGraphic = new esri.Graphic(Point, null, attr, null);&lt;BR /&gt;&lt;BR /&gt;featuureLayer.applyEdits([newGraphic], null, null);&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you confirm that applyEdits fails ONLY when you haven't added your feature layer to the map? If your featureLayer has been added to the map, and applyEdits is failing, that is a different issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 14:27:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119874#M11147</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-04-19T14:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119875#M11148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Derek,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can confirm that applyEdits fails on standalone tables as well.&amp;nbsp; A table that is added to the published document, prior to 2.8 could be brought in as a feature layer and operated on.&amp;nbsp; Needless to say, adding this layer to the map is meaningless so the above solution does not work.&amp;nbsp; When playing around a bit, if I set MODE = Snapshot on the tables featurelayer, the error I get is object does not support setAttributes, however, removing that setting gives me the error that states something about the geomtery.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps, until there is a fix, I'm stuck at 2.7.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 13:34:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119875#M11148</guid>
      <dc:creator>HaroldBostic</dc:creator>
      <dc:date>2012-04-25T13:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119876#M11149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Harold,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the additional info. We are looking into a fix.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 14:05:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119876#M11149</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-04-25T14:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119877#M11150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, that's a layer won't add to map. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"Can you confirm that applyEdits fails ONLY when you haven't added your feature layer to the map? If your featureLayer has been added to the map, and applyEdits is failing, that is a different issue. "&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have exact error that prevents me updating from 2.6 to 2.8.&lt;BR /&gt;&lt;BR /&gt;Look forward to seeing this fixed in next release.&lt;BR /&gt;&lt;BR /&gt;Code break here&lt;BR /&gt;&lt;BR /&gt;var attr = { "USAGE": status, "ACTION":"update"};&lt;BR /&gt;&lt;BR /&gt;var newGraphic = new esri.Graphic(Point, null, attr, null);&lt;BR /&gt;&lt;BR /&gt;featuureLayer.applyEdits([newGraphic], null, null);&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2012 17:20:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119877#M11150</guid>
      <dc:creator>gisscconsulting</dc:creator>
      <dc:date>2012-05-02T17:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119878#M11151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for following up. This will be fixed in the next release of the API.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2012 19:48:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119878#M11151</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-05-02T19:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119879#M11152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks for following up. This will be fixed in the next release of the API.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Has this been fixed?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to apply edits to a feature layer (without adding it to the map first) and I get "Uncaught TypeError: Object #&amp;lt;Object&amp;gt; has no method '_isWrappable'".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 11:35:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119879#M11152</guid>
      <dc:creator>ChrisRiver</dc:creator>
      <dc:date>2012-09-27T11:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119880#M11153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We fixed this in 3.0:&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jshelp/new_v30.html" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/help/jshelp/new_v30.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Specifically:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;NIM081335: Feature Layer: applyEdits throws error when called before adding the layer to map&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 14:43:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119880#M11153</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-09-27T14:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: JavaScript API 2.7 vs. 2.8 - FeatureLayer.applyEdits</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119881#M11154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As of 3.10, is this issue resolved for tables accessed as FeatureLayers?&lt;/P&gt;&lt;P&gt;I am facing this issue with my tables...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 23:29:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/javascript-api-2-7-vs-2-8-featurelayer-applyedits/m-p/119881#M11154</guid>
      <dc:creator>BillyYancey</dc:creator>
      <dc:date>2014-09-04T23:29:26Z</dc:date>
    </item>
  </channel>
</rss>

