<?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: Copy and Paste Graphics with esri:Editor in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/copy-and-paste-graphics-with-esri-editor/m-p/545673#M12333</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I can confirm this can be done ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i've created a widget that queries for a blast holes ... does a convexhull , does 2 buffers&amp;nbsp; all as graphics ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;then i push them into a feature service (for current exclusion zone) .. works really nicely&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;currentGeometry = graphic.geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //test pushing into feature service
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var editfs:FeatureLayer = new FeatureLayer("http://chchwebapp01/ArcGIS/rest/services/Editing/BlastZones/FeatureServer/0");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureLayer(editfs).applyEdits([ graphic ], null, null);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;just need now to do the attributes stuff to set them automatically ...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 23:36:39 GMT</pubDate>
    <dc:creator>IainCampion</dc:creator>
    <dc:date>2021-12-11T23:36:39Z</dc:date>
    <item>
      <title>Copy and Paste Graphics with esri:Editor</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/copy-and-paste-graphics-with-esri-editor/m-p/545671#M12331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings Everyone, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to create a very simple edit tool for non-GIS users to develop and manage their own datasets. I have a user that would like to develop a parcel based dataset without having to get into the ins and outs of topology and complex editing. I would like to design a tool that allows the user to select a parcel and commit it to another parcel based layer. Is a workflow like this possible with the esri:Editor class? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tyler Waring&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2012 19:11:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/copy-and-paste-graphics-with-esri-editor/m-p/545671#M12331</guid>
      <dc:creator>TylerWaring</dc:creator>
      <dc:date>2012-03-02T19:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Copy and Paste Graphics with esri:Editor</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/copy-and-paste-graphics-with-esri-editor/m-p/545672#M12332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is a workflow like this possible with the esri:Editor class? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not with the Editor class, but it's possible with the API.&amp;nbsp; The key is to use select the graphics from one layer, then use FeatureLayer.applyEdit() on another.&amp;nbsp; A sample that shows part of this is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/flex/samples/index.html#/Edit_without_Editor/01nq00000043000000/"&gt;http://help.arcgis.com/en/webapi/flex/samples/index.html#/Edit_without_Editor/01nq00000043000000/&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;FeatureLayer(graphic.graphicsLayer).applyEdits(null, [ graphic ], null);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 21:02:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/copy-and-paste-graphics-with-esri-editor/m-p/545672#M12332</guid>
      <dc:creator>BjornSvensson</dc:creator>
      <dc:date>2012-03-12T21:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Copy and Paste Graphics with esri:Editor</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/copy-and-paste-graphics-with-esri-editor/m-p/545673#M12333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I can confirm this can be done ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i've created a widget that queries for a blast holes ... does a convexhull , does 2 buffers&amp;nbsp; all as graphics ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;then i push them into a feature service (for current exclusion zone) .. works really nicely&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;currentGeometry = graphic.geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //test pushing into feature service
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var editfs:FeatureLayer = new FeatureLayer("http://chchwebapp01/ArcGIS/rest/services/Editing/BlastZones/FeatureServer/0");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureLayer(editfs).applyEdits([ graphic ], null, null);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;just need now to do the attributes stuff to set them automatically ...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:36:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/copy-and-paste-graphics-with-esri-editor/m-p/545673#M12333</guid>
      <dc:creator>IainCampion</dc:creator>
      <dc:date>2021-12-11T23:36:39Z</dc:date>
    </item>
  </channel>
</rss>

