<?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: About Editor_EditCompleted ... in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521480#M13401</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jennifer, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iìve tried your code: maybe i wasn't able to explain u my request.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me try to explain u better:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What i want to do is NOT the delete selected polygon , simple the deselect the polygon selected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I try to write u the steps :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Put 2 feature layers ( L1 and L2 ) on map. (i have set the editor by code).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Press a button to start selection session:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void Button_Click(object sender, RoutedEventArgs e)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor = new Editor();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.Map = MyMap;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.SelectionMode = DrawMode.Point;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.Select.Execute("New");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.ContinuousMode = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.EditCompleted += new EventHandler&amp;lt;Editor.EditEventArgs&amp;gt;(Editor_EditCompleted);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3)&amp;nbsp; by clicking on the map i can select features on both layers L1 &amp;amp; L2 and obtain information about&amp;nbsp; layers i'm working through the Editor_EditCompleted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the Editor_EditCompleted event i can understand on which layer i'm working because the properties e.Edits it's never null , and all it's ok.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) Now i want to add selected polygons to current selection: i do that with keyboards in this way:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Press shif , click on map and new selected features are added&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; void MainPage_KeyDown(object sender, KeyEventArgs e)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (_editor == null) return;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (e.Key == Key.Ctrl)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.Select.Execute("Remove");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (e.Key == Key.Shift)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.Select.Execute("Add");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (e.Key == Key.Escape)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _editor.CancelActive.Execute(null);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; .... and all it's ok&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;5) Now ( this is the trouble case ) i would like to deselect some objects from existing selection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;..Press ctrl and click on map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The features are correctly deselected , but now the question is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If i check the e.edits value in Editor_EditCompleted, i have this value null.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This means that i'm not be able to understand on which layer the selected object are deselected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if i was clear in my explanation&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ciao Giorgio&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;when i click on map i can salect a poligon on each layer. I would like to understand on which layer im' working against not when i select a poligon but when i deselecte objects from one of 2 layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Infact, the e.edits return a Layer not null when i add the selection , null when i remove the selection.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Apr 2011 13:19:19 GMT</pubDate>
    <dc:creator>MarcoRosa</dc:creator>
    <dc:date>2011-04-04T13:19:19Z</dc:date>
    <item>
      <title>About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521458#M13379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi to all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i'm using the editor tool and Editor_EditCompleted event: after selection this event it's fired 2 times , the first time e.Action value is "Select" , the second time the value is "Cancel".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It's correct this behaviour ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank u very much&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GP&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 14:47:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521458#M13379</guid>
      <dc:creator>MarcoRosa</dc:creator>
      <dc:date>2011-02-23T14:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521459#M13380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I cannot replicate the issue when using the Editing samples:&lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsExplicitSave" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsExplicitSave&lt;/A&gt;&lt;SPAN&gt;. EditCompleted is fired once after Select command is completed, EditEventArgs.Action = Editor.EditAction.Select.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your code, do you call Cancel command? Maybe you have something like this in your code?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
if (editor.CancelActive.CanExecute(null))
 editor.CancelActive.Execute(null);
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;This is similar to clicking "CancelAction" button in the above sample link and will result to e.Action == EditAction.Cancel.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CancelActive may also be triggered when, you activate another Command. For example when you click "New Selection" button and then click "Add to Selection" button. The previous command will be cancelled and as a result will fire EditCompleted with e.Action == EditAction.Cancel.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:44:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521459#M13380</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T22:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521460#M13381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jennifer , i verified that event Editor_EditCompleted is fired only one time if u have just one layer on&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LayerIDs properties but not if u have 2 for example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If u have 2 feature layers like following ( my ) case :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;esri:Editor x:Key="MyEditor" Map="{Binding ElementName=MyMap}" LayerIDs="Zone,Comuni"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SelectionMode="Point" ContinuousMode="True" EditCompleted="Editor_EditCompleted"&amp;nbsp; /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In particular the events it's fired 2 times for first layer , one time for second (not in the same order).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have used to test this a esri sample , no methods editor.CancelActive.Execute(null) in source code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now if have 3 layers ( LayerIDs="Zone,Zone2,Comuni" ) i observer that the event it's fired 3 times for one of 3 layers , 2 times for the second e 1 time for the last. (not always in the same order).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I dont' understand why it's appens&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank's GP&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 10:52:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521460#M13381</guid>
      <dc:creator>MarcoRosa</dc:creator>
      <dc:date>2011-02-24T10:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521461#M13382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I cannot replicate the issue with v2.1 and up.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When I make a selection on multiple layers using Editor.Select. Editor.EditCompleted event is fired once for EditAction.Select, regardless if my selection includes features from both layers. I confirmed this using the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void Editor_EditCompleted(object sender, Editor.EditEventArgs e)
{
 if (e.Action == Editor.EditAction.Select)
&amp;nbsp; foreach (var edit in e.Edits)
&amp;nbsp;&amp;nbsp; System.Diagnostics.Debug.WriteLine(edit.Layer.ID);
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;And it my Output window, I see both layer IDs. I also placed a breakpoint on EditCompleted to see if I'll hit it for an EditAction.Cancel, but I didn't.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What version of the API are you using? You are noticing that EditAction.Cancel is fired after Editor.EditAction.Select when you have more than one layer?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:44:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521461#M13382</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T22:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521462#M13383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi jennifer , sorry per very late in my response, i've tried the same code witj api 2.0 and api 2.1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Looks like correct behaviour with the old api version 2.0 In this case i've the editcompleted_event fired once when i select an object on feature layer, with the 2.1 api the same code fires twice the editcompleted event ... first time with e.Action = select second time e.Action = Cancel&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's correct that ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks again GP&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 08:30:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521462#M13383</guid>
      <dc:creator>MarcoRosa</dc:creator>
      <dc:date>2011-03-24T08:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521463#M13384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the following test. Please try it out and let me know how I could reproduce the issue you are experiencing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XAML-code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:esri="http://schemas.esri.com/arcgis/client/2009"&amp;gt;

 &amp;lt;Grid x:Name="LayoutRoot" Background="White" &amp;gt;
&amp;nbsp; &amp;lt;Grid.Resources&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;esri:Editor x:Key="MyEditor" EditCompleted="Editor_EditCompleted" Map="{Binding ElementName=MyMap}"/&amp;gt;
&amp;nbsp; &amp;lt;/Grid.Resources&amp;gt;
&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap" Extent="-63043237.1870117,-29260415.7409668,36029344.3774414,36661048.8306274"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer ID="Point" Url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/FeatureServer/0" /&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer ID="Line" Url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/FeatureServer/1"/&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer ID="Area" Url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/FeatureServer/2"/&amp;gt;
&amp;nbsp; &amp;lt;/esri:Map&amp;gt;
&amp;nbsp; &amp;lt;Button DataContext="{StaticResource MyEditor}" Content="Select" Command="{Binding Select}" VerticalAlignment="Top" HorizontalAlignment="Center"/&amp;gt;
 &amp;lt;/Grid&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here, all I'm doing is printing to my Output Window the e.Action. Running this test against v2.1 Final. I only see Select printed in my Output Window.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Code-behind:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void Editor_EditCompleted(object sender, ESRI.ArcGIS.Client.Editor.EditEventArgs e)
{
 System.Diagnostics.Debug.WriteLine(e.Action);
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:44:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521463#M13384</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T22:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521464#M13385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm using the 2.2 beta version of the API and I'm seeing very similar behavior, except the Select action value fires 1, 2, or 3 times.&amp;nbsp; The Cancel action never fires.&amp;nbsp; I haven't picked up on the pattern yet, so it seems to be somewhat arbitrary to me.&amp;nbsp; What is even more interesting is that I draw three graphics on the map - a square, a circle, and a diamond.&amp;nbsp; On the select event I check to see what the symbol is on the selected graphic and every once in a while it will be one step behind.&amp;nbsp; For example, I select the circle first and it reports circle, then I select the square and it reports square, then I select the diamond and it reports square, then I select the circle and it reports diamond.&amp;nbsp; Very weird.&amp;nbsp; This happens consistently though.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not quite sure what is going on, but it makes it next to impossible to do anything useful with the selected graphic since you're never quite sure which one it is going to be.&amp;nbsp; I even tried tying into the PropertyChanged event on my graphics layer and reacting to a change in the SelectedGraphics property.&amp;nbsp; The same thing happens there.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer, I'm still not able to upload a zip file less than 2 MB for some reason.&amp;nbsp; Can I e-mail you the zip file containing my DOTNET project?&amp;nbsp; I think it's very important for you or someone on your side to see this behavior as you haven't been able to replicate it yet.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 19:35:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521464#M13385</guid>
      <dc:creator>AndyWright</dc:creator>
      <dc:date>2011-03-24T19:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521465#M13386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Andy. I'd be glad to look at your code. Please try to strip it down so you may copy-paste or attach only the important parts (i.e. Editor, Layer definition -in XAML/code-behind). Have you tried the code-snippet in post# 5? Would you be able to tell me what other settings I need to add to my FeatureLayer or Editor to be able to reproduce the issue? Also, try to clean the solution if you want to attach it in a zipped file (I think just the code files is sufficient). Thank you for trying out our beta. I would really like to get this resolved if we can figure out what's wrong.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 15:33:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521465#M13386</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-03-25T15:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521466#M13387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi jennifer, iìve tried your code. here the results:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) i've verified thah your code fire only one time the event on select&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) i've a little difference in my code, i've set the the ContinuousMode="True". I've verified that parameter is the reason for the event to fires 2 times. U can try this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So , this at point 2) is also good for me, with a work around e've solved my problem, the only think i have to solve now is the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have 2 feature layers on map. i have also set the editor by code .... add and remove tools.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;when i click on map i can salect a poligon on each layer. I would like to understand on which layer im' working against not when i select a poligon but when i remove the selected objects from one of 2 layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Infact, the e.edits return a Layer not null when i add the selection , null when i remove the selection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope to be my explanation good.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GP&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 22:14:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521466#M13387</guid>
      <dc:creator>MarcoRosa</dc:creator>
      <dc:date>2011-03-25T22:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521467#M13388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've done everything you said, my zip file is 1.3MB in size, and I still can't upload it to your site.&amp;nbsp; There are too many files in the project to copy-paste stuff up here.&amp;nbsp; Can I send it to you in an e-mail?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've also reported this as a bug to the Silverlight Beta team and uploaded a copy of my project there.&amp;nbsp; Maybe you can get it from them.&amp;nbsp; It's BUG-000011.&amp;nbsp; I know that I also had ContinuousMode set to True in my project, so gporta is obviously on to something there.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know what you think Jennifer.&amp;nbsp; Thanks ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 13:53:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521467#M13388</guid>
      <dc:creator>AndyWright</dc:creator>
      <dc:date>2011-03-28T13:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521468#M13389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Giorgio,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When Editor.ContinuousMode=True it is expected to get edit.Action=Cancel because the current command is activated again. For example you select features from layer 1,2,3. EditCompleted event will report edit.Action=Select with selections from 1,2,3 first and then followed by edit.Action=Cancel.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So if you update the code-behind in post# 6 with the following, you will notice that after selection in all layers are made, a Cancel is reported. &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void Editor_EditCompleted(object sender, ESRI.ArcGIS.Client.Editor.EditEventArgs e)
{
 System.Diagnostics.Debug.WriteLine(e.Action);
 foreach (var edit in e.Edits)
&amp;nbsp; System.Diagnostics.Debug.WriteLine("id '{0}', layer '{1}'", edit.Graphic.Attributes["objectid"], edit.Layer.ID);
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You access the layer similar way when DeleteSelected is executed. &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;FeatureLayer layer = edit.Layer as FeatureLayer;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Try the following XAML-code to add DeleteSelected:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;StackPanel DataContext="{StaticResource MyEditor}"&amp;nbsp; VerticalAlignment="Top" HorizontalAlignment="Center" Orientation="Horizontal"&amp;gt;
 &amp;lt;Button Content="Select" Command="{Binding Select}" /&amp;gt;
 &amp;lt;Button Content="Delete" Command="{Binding DeleteSelected}" /&amp;gt;
&amp;lt;/StackPanel&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have access to API v2.2 Beta Community as well but I do not find your code posted in there. Can you provide a link?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your code, do you have Editor.ContinuousMode=True as well and is what I described above what you're seeing too? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I understand your project can be quite large, but we only need XAML and cs files. It would be ideal if you can give us only the code that will reproduce the issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:44:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521468#M13389</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T22:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521469#M13390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a link that will get you to the bugs that have been submitted for the 2.2 API.&amp;nbsp; Mine is BUG-000011. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://betacommunity.esri.com/project/feedback/track/list.html?cap=16C1D9C4623345308F10F0687AC949E6&amp;amp;f={225DDC30-A35E-466A-9F6C-E0A368D88F4A}&amp;amp;vfid=1763CC5CF2204C4B88E841A777343E5F&amp;amp;pr=0&amp;amp;bnmsg=&amp;amp;bnmsgu=true"&gt;https://betacommunity.esri.com/project/feedback/track/list.html?cap=16C1D9C4623345308F10F0687AC949E6&amp;amp;f={225DDC30-A35E-466A-9F6C-E0A368D88F4A}&amp;amp;vfid=1763CC5CF2204C4B88E841A777343E5F&amp;amp;pr=0&amp;amp;bnmsg=&amp;amp;bnmsgu=true&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I do have ContinuousMode set to true, but I never see the cancel action come through the pipeline.&amp;nbsp; It is always multiple select actions for me.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 17:57:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521469#M13390</guid>
      <dc:creator>AndyWright</dc:creator>
      <dc:date>2011-03-28T17:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521470#M13391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh okay I see it now. Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 18:49:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521470#M13391</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-03-28T18:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521471#M13392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kindly check your DrawToolsViewModel.cs SetTool() method. This method whenever called subscribes to Editor.EditCompleted. This is the reason you get Select and Cancel action for every graphic that was added.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What you can do is use a read-only DrawEditor property with _drawEditor initially set to null. This will ensure that you set Editor properties and subscribe to EditCompleted events once. Instead of using _drawEditor to activate Select/Cancel/EditVertices, use DrawEditor instead.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private Editor DrawEditor
{
 get
 {
&amp;nbsp; if (_drawEditor == null)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; _drawEditor = new Editor();
&amp;nbsp;&amp;nbsp; _drawEditor.LayerIDs = new List&amp;lt;string&amp;gt; { DrawToolsGraphicsLayer.ID };
&amp;nbsp;&amp;nbsp; _drawEditor.GeometryServiceUrl = "http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer";
&amp;nbsp;&amp;nbsp; _drawEditor.ContinuousMode = true;
&amp;nbsp;&amp;nbsp; _drawEditor.EditCompleted += new EventHandler&amp;lt;Editor.EditEventArgs&amp;gt;(_drawEditor_EditCompleted);
&amp;nbsp; }
&amp;nbsp; return _drawEditor;
 }
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:44:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521471#M13392</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T22:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521472#M13393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thks jennifer , i'll try and let y know&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Giorgio&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 19:48:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521472#M13393</guid>
      <dc:creator>MarcoRosa</dc:creator>
      <dc:date>2011-03-28T19:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521473#M13394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure if you got my e-mail reply to you yesterday or not, so I'll post it here as well.&amp;nbsp; Here's your e-mail ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Kindly check your DrawToolsViewModel.cs SetTool() method. This method whenever called subscribes to Editor.EditCompleted. This is the reason you get Select and Cancel action for every graphic that was added.&lt;BR /&gt;&lt;BR /&gt;What you can do is use a read-only DrawEditor property with _drawEditor initially set to null. This will ensure that you set Editor properties and subscribe to EditCompleted events once. Instead of using _drawEditor to activate Select/Cancel/EditVertices, use DrawEditor instead.&lt;BR /&gt;&lt;BR /&gt;private Editor DrawEditor&lt;BR /&gt;{&lt;BR /&gt;get&lt;BR /&gt;{&lt;BR /&gt;if (_drawEditor == null)&lt;BR /&gt;{&lt;BR /&gt;_drawEditor = new Editor();&lt;BR /&gt;_drawEditor.LayerIDs = new List { DrawToolsGraphicsLayer.ID };&lt;BR /&gt;_drawEditor.GeometryServiceUrl = "&lt;A href="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer" target="_blank"&gt;http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer&lt;/A&gt;";&lt;BR /&gt;_drawEditor.ContinuousMode = true;&lt;BR /&gt;_drawEditor.EditCompleted += new EventHandler(_drawEditor_EditCompleted);&lt;BR /&gt;}&lt;BR /&gt;return _drawEditor;&lt;BR /&gt;}&lt;BR /&gt;}&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And here's my reply:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The EditCompleted event only ever gets subscribed to once.&amp;nbsp; I have all of that stuff enclosed in an if statement.&amp;nbsp; The LayerIDs property is only null the first time through.&amp;nbsp; Once that gets set I can call SetTool thousands of times and the code within this if construct will never run.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
if (_drawEditor.LayerIDs == null)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _drawEditor.LayerIDs = new List&amp;lt;string&amp;gt; { DrawToolsGraphicsLayer.ID };
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _drawEditor.GeometryServiceUrl = "http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _drawEditor.ContinuousMode = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _drawEditor.SelectionMode = DrawMode.Point;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _drawEditor.EditCompleted += new EventHandler&amp;lt;Editor.EditEventArgs&amp;gt;(_drawEditor_EditCompleted);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;I tried your suggestion anyway and it didn�??t fix the problem.&amp;nbsp; If you create three points on the map, put a breakpoint in the _drawEditor_EditCompleted method, then use the select tool to individually select each point you�??ll see that the Select action gets fired multiple times.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:44:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521473#M13394</guid>
      <dc:creator>AndyWright</dc:creator>
      <dc:date>2021-12-11T22:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521474#M13395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I actually don't have access to that e-mail but it was posted again as comment in the bug reports section so I was able to reply to it there.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 22:24:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521474#M13395</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-03-29T22:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521475#M13396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, thanks Jennifer.&amp;nbsp; I'll start replying to you directly through the bug reports forum.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Mar 2011 18:26:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521475#M13396</guid>
      <dc:creator>AndyWright</dc:creator>
      <dc:date>2011-03-30T18:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521476#M13397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi jennifer , understand the topic for the selection ... but i've the second problem to solve.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I try to explain u:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have 2 feature layers on map. (i have set the editor by code .... add and remove tools).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;when i click on map i can salect a poligon on each layer. I would like to understand on which layer im' working against not when i select a poligon but when i remove the selected objects from one of 2 layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Infact, the e.edits return a Layer not null when i add the selection , null when i remove the selection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying a work around to solve this now , if u have any suggest for me .. thank u&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Giorgio&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2011 09:02:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521476#M13397</guid>
      <dc:creator>MarcoRosa</dc:creator>
      <dc:date>2011-03-31T09:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: About Editor_EditCompleted ...</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521477#M13398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You need to iterate through the edits and look at edit.Graphic and edit.Layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void MyEditor_EditCompleted(object sender, Editor.EditEventArgs e)
{
 if (e.Action == Editor.EditAction.DeleteSelected)
 {
&amp;nbsp; foreach (var edit in e.Edits)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; //deleted graphic is edit.Graphic 
&amp;nbsp;&amp;nbsp; //TODO: use edit.Layer
&amp;nbsp; }
 }
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:44:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/about-editor-editcompleted/m-p/521477#M13398</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T22:44:41Z</dc:date>
    </item>
  </channel>
</rss>

