<?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: Attribute Editing for multiple layers in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676533#M17414</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Map doesn't have the Graphics attribute, and the following line fails in yourFeatureLayer_MouseLeftButtonUp event handler:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
foreach (Graphic item in &lt;STRONG style="color: Red;"&gt;Map&lt;/STRONG&gt;.Graphics)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; item.Selected = false;
&lt;/PRE&gt;&lt;SPAN&gt;Instead you should get the feature layer firing the event and loop through the collection of graphics in that layer, i.e.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
FeatureLayer layer = sender as FeatureLayer;
foreach (Graphic item in &lt;STRONG style="color: Red;"&gt;layer&lt;/STRONG&gt;.Graphics)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; item.Selected = false;
this.Attributes.FeatureLayer = layer;
// And the rest of your code
........
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 04:31:16 GMT</pubDate>
    <dc:creator>AliMirzabeigi</dc:creator>
    <dc:date>2021-12-12T04:31:16Z</dc:date>
    <item>
      <title>Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676523#M17404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was wondering if it was possible to use one attribute editor for multuiple layers. It would streamline my application stream and reduce the file size.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 13:23:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676523#M17404</guid>
      <dc:creator>WilliamDonahue</dc:creator>
      <dc:date>2010-10-29T13:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676524#M17405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;An alternative would be to use a ComboBox bound to the layers collection in your map and binding the FeatureLayer property of the FeatureDataForm to the selected layer (SelectedItem) in your ComboBox. Depending on your application logic you would then need to set the GraphicSource property of the FeatureDataForm accordingly.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 15:53:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676524#M17405</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2010-10-29T15:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676525#M17406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have minimal programing experience with the online APIs. I just started 2 weeks ago. I have been following the online samples. Would it be possible for you to clarify how to use the combo box to make the Graphics changes?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 12:54:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676525#M17406</guid>
      <dc:creator>WilliamDonahue</dc:creator>
      <dc:date>2010-11-01T12:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676526#M17407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is a simple example...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Assume you have the following layers in your UserControl:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Map&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; x&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"MyMap"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ArcGISTiledMapServiceLayer&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ID&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"BaseLayer"&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; &lt;SPAN style="color:red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer" rel="nofollow noopener noreferrer" target="_blank"&gt;http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;FeatureLayer&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ID&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Fire"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; OutFields&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"*"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; DisableClientCaching&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"True"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; AutoSave&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"False"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; MouseLeftButtonUp&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"FeatureLayer_MouseLeftButtonUp"&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; &lt;SPAN style="color:red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Fire/Sheep/FeatureServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Fire/Sheep/FeatureServer/0&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;FeatureLayer&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ID&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"HomelandSecurity"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; OutFields&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"*"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; DisableClientCaching&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"True"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; AutoSave&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"False"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; MouseLeftButtonUp&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"FeatureLayer_MouseLeftButtonUp"&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; &lt;SPAN style="color:red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/FeatureServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/FeatureServer/0&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Map&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;SPAN&gt;I added a StackPanel containing my ComboBox and a FeatureDataForm for attribute editing. The GraphicSource property of the FeatureDataForm has set to the selected graphic of the feature layers:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;StackPanel&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; HorizontalAlignment&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Right"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; VerticalAlignment&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Top"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Margin&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"10"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;StackPanel&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Orientation&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Horizontal"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;TextBlock&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Text&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Select Layer"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ComboBox&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; x&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"cboLayers"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Margin&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"3,0,0,0"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ComboBoxItem&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Content&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Fire"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; DataContext&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Path&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;Layers&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;[&lt;/SPAN&gt;1&lt;SPAN style="color:blue;"&gt;],&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ElementName&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;MyMap&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ComboBoxItem&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Content&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"HomelandSecurity"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; DataContext&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Path&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;Layers&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;[&lt;/SPAN&gt;2&lt;SPAN style="color:blue;"&gt;],&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ElementName&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;MyMap&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ComboBox&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;StackPanel&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;FeatureDataForm&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; x&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"MyFeatureDataForm"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Width&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"400"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Height&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"400"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:red;"&gt; FeatureLayer&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Path&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;SelectedItem&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;DataContext&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ElementName&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;cboLayers&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:red;"&gt; GraphicSource&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Path&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;SelectedItem&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;DataContext&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;SelectedGraphics&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;[&lt;/SPAN&gt;0&lt;SPAN style="color:blue;"&gt;],&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ElementName&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;cboLayers&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;StackPanel&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;SPAN&gt;And here is the MouseLeftButtonUp event handler of both FeatureLayers:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&lt;SPAN style="color:blue;"&gt;private&lt;/SPAN&gt; &lt;SPAN style="color:blue;"&gt;void&lt;/SPAN&gt; FeatureLayer_MouseLeftButtonUp(&lt;SPAN style="color:blue;"&gt;object&lt;/SPAN&gt; sender, ESRI.ArcGIS.Client.&lt;SPAN style="color:#2b91af;"&gt;GraphicMouseButtonEventArgs&lt;/SPAN&gt; e)
&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; &lt;SPAN style="color:#2b91af;"&gt;FeatureLayer&lt;/SPAN&gt; featureLayer = sender &lt;SPAN style="color:blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color:#2b91af;"&gt;FeatureLayer&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; &lt;SPAN style="color:blue;"&gt;for&lt;/SPAN&gt; (&lt;SPAN style="color:blue;"&gt;int&lt;/SPAN&gt; i = 0; i &amp;lt; featureLayer.SelectionCount; i++)
&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; featureLayer.SelectedGraphics.ToList()&lt;I&gt;.UnSelect();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; e.Graphic.Select();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/I&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:31:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676526#M17407</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2021-12-12T04:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676527#M17408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another way is to have all the FeatureLayer subscribe to MouseLeftButtonDown event and update your FeatureDataForm's FeatureLayer and GraphicSource in the eventhandler:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 private void FeatureLayer_MouseLeftButtonDown(object sender, ESRI.ArcGIS.Client.GraphicMouseButtonEventArgs e)
 {
&amp;nbsp; this.MyFeatureDataForm.FeatureLayer = sender as FeatureLayer;
&amp;nbsp; this.MyFeatureDataForm.GraphicSource = e.Graphic;
 }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are going to use Ali's suggestion, your ComboBox ItemSource need to bind to a list of FeatureLayer and your FeatureDataForm's FeatureLayer need to bind to the SelectedItem of your ComboBox. How you choose the Graphic, is up to your application's logic.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:31:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676527#M17408</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-12T04:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676528#M17409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jen,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If i wanted to have it show a selection color for only the selected item how would i do that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I when i change feature layers say from points to lines there are both a line and a point highlighted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the help so far.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 17:44:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676528#M17409</guid>
      <dc:creator>WilliamDonahue</dc:creator>
      <dc:date>2010-11-01T17:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676529#M17410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can iterate through the layers' Graphics and mark every selected graphic (Selected = false). You can subscribe to PropertyChanged event on all FeatureLayers. The property you need to check for is either "SelectedGraphics" or "SelectionCount".&amp;nbsp; When either of these two property changes, you can check whether this is the layer you want the graphic to be selected, if not then be sure to unselect the graphic.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 17:58:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676529#M17410</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-11-01T17:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676530#M17411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is that a for loop that seaches through the entire Feature layer or is it more like a clear selection command?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Nov 2010 18:13:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676530#M17411</guid>
      <dc:creator>WilliamDonahue</dc:creator>
      <dc:date>2010-11-01T18:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676531#M17412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It is a foreach loop. &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
foreach (Graphic item in layer.Graphics)
&amp;nbsp;&amp;nbsp; item.Selected = false;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can also use the Editor's ClearSelection command as in this sample: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureLayerSelection" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureLayerSelection&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:31:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676531#M17412</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-12T04:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676532#M17413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would perfer not to have my users need to click clear selection before each selection. I tried working with the code you provided and realized i am missing something. Below is my attached code&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp; private void FeatureLayer_MouseLeftButtonUp(object sender, GraphicMouseButtonEventArgs e)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; foreach (Graphic item in Map.Graphics)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; item.Selected = false;
&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; this.Attributes.FeatureLayer = sender as FeatureLayer;
&amp;nbsp;&amp;nbsp; this.Attributes.GraphicSource = e.Graphic;
&amp;nbsp;&amp;nbsp; this.Attachments.GraphicSource = e.Graphic;
&amp;nbsp;&amp;nbsp; this.Attachments.FeatureLayer = sender as FeatureLayer;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; FeatureLayer featureLayer = sender as FeatureLayer;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What i don't really understand is what to put in the position before the .graphics, I keep getting errors returned.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:31:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676532#M17413</guid>
      <dc:creator>WilliamDonahue</dc:creator>
      <dc:date>2021-12-12T04:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676533#M17414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Map doesn't have the Graphics attribute, and the following line fails in yourFeatureLayer_MouseLeftButtonUp event handler:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
foreach (Graphic item in &lt;STRONG style="color: Red;"&gt;Map&lt;/STRONG&gt;.Graphics)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; item.Selected = false;
&lt;/PRE&gt;&lt;SPAN&gt;Instead you should get the feature layer firing the event and loop through the collection of graphics in that layer, i.e.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
FeatureLayer layer = sender as FeatureLayer;
foreach (Graphic item in &lt;STRONG style="color: Red;"&gt;layer&lt;/STRONG&gt;.Graphics)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; item.Selected = false;
this.Attributes.FeatureLayer = layer;
// And the rest of your code
........
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:31:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676533#M17414</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2021-12-12T04:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676534#M17415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ali&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code you provided appears clear the layer that was currently selected. My app has 3 total featrue layers and what i want to do is clear all the selections from all the layers before the new selection is made. the rest of my code should make the new selection.&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;Will&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Nov 2010 15:50:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676534#M17415</guid>
      <dc:creator>WilliamDonahue</dc:creator>
      <dc:date>2010-11-03T15:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676535#M17416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In that case in you can do something similar to the following in the MouseLeftButtonUp event handler (before the line "FeatureLayer layer = sender as FeatureLayer;") to clear selection from all "FeatureLayer" layers of your map control:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&lt;SPAN style="color:blue;"&gt;foreach&lt;/SPAN&gt; (&lt;SPAN style="color:#2b91af;"&gt;Layer&lt;/SPAN&gt; layer &lt;SPAN style="color:blue;"&gt;in&lt;/SPAN&gt; MyMap.Layers)
&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; &lt;SPAN style="color:blue;"&gt;if&lt;/SPAN&gt; (layer &lt;SPAN style="color:blue;"&gt;is&lt;/SPAN&gt; &lt;SPAN style="color:#2b91af;"&gt;FeatureLayer&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:blue;"&gt;foreach&lt;/SPAN&gt; (&lt;SPAN style="color:#2b91af;"&gt;Graphic&lt;/SPAN&gt; item &lt;SPAN style="color:blue;"&gt;in&lt;/SPAN&gt; (layer &lt;SPAN style="color:blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color:#2b91af;"&gt;FeatureLayer&lt;/SPAN&gt;).Graphics)
&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; item.Selected = &lt;SPAN style="color:blue;"&gt;false&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;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:31:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676535#M17416</guid>
      <dc:creator>AliMirzabeigi</dc:creator>
      <dc:date>2021-12-12T04:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Editing for multiple layers</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676536#M17417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Guys for all the help. That worked.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Nov 2010 11:52:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-editing-for-multiple-layers/m-p/676536#M17417</guid>
      <dc:creator>WilliamDonahue</dc:creator>
      <dc:date>2010-11-05T11:52:02Z</dc:date>
    </item>
  </channel>
</rss>

