<?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: Editor Widget (how do I limit records in the data grid?) in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613122#M15729</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Silverlight 2.2&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Dec 2011 10:20:16 GMT</pubDate>
    <dc:creator>JerryBiedenbender</dc:creator>
    <dc:date>2011-12-01T10:20:16Z</dc:date>
    <item>
      <title>Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613115#M15722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was wondering if there was a way to limit the records that show up in the data grid. Right now everything in the layer shows up in the grid. Is it possible to not show a record in the grid that has a status as "complete" in one of the fields. Or only populate the data grid by a date range, (only records that have a date no older than a week or something?)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jerry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2011 16:41:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613115#M15722</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2011-11-16T16:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613116#M15723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you using FeatureDataGrid? &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureDataGrid" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureDataGrid&lt;/A&gt;&lt;SPAN&gt;. If yes, you can set FilterSource property with Linq query.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 MyDataGrid.FilterSouce = (from g in l.Graphics
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where g.Attributes.ContainsKey("status") &amp;amp;&amp;amp; (string)g.Attributes["status"] == "completed"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select g).ToList();
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:13:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613116#M15723</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-12T02:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613117#M15724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is this where I'm suppose to add the code?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&amp;nbsp; private void FeatureLayer_MouseLeftButtonUp(object sender, GraphicMouseButtonEventArgs args)&amp;nbsp; &lt;BR /&gt; {&amp;nbsp; &lt;BR /&gt; FeatureLayer featureLayer = sender as FeatureLayer;&amp;nbsp; &lt;BR /&gt; args.Graphic.Select();&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; args.Graphic.Selected = !args.Graphic.Selected;&amp;nbsp; &lt;BR /&gt; if (args.Graphic.Selected)&amp;nbsp; &lt;BR /&gt; MyDataGrid.ScrollIntoView(args.Graphic, null);&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; MyDataGrid.&amp;nbsp; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;FilterSouce&lt;/SPAN&gt; = (from g in&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;l&lt;/SPAN&gt;.Graphics&amp;nbsp; &lt;BR /&gt; where g.Attributes.ContainsKey("status") &amp;amp;&amp;amp; (string)g.Attributes["status"] == "completed"&amp;nbsp; &lt;BR /&gt; select g).ToList();&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; }&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I add it here I get two errors....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. 'ESRI.ArcGIS.Client.Toolkit.FeatureDataGrid' does not contain a definition for 'FilterSouce' and no extension method 'FilterSouce' accepting a first argument of type 'ESRI.ArcGIS.Client.Toolkit.FeatureDataGrid' could be found (are you missing a using directive or an assembly reference?)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. The name 'l' does not exist in the current context&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 15:48:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613117#M15724</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2011-11-18T15:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613118#M15725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Modified to be blank2&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 15:49:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613118#M15725</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2011-11-18T15:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613119#M15726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client.Toolkit~ESRI.ArcGIS.Client.Toolkit.FeatureDataGrid~FilterSource.html"&gt;http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client.Toolkit~ESRI.ArcGIS.Client.Toolkit.FeatureDataGrid~FilterSource.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where you place the code-snippet is really an application logic. Maybe on a button-click? Whenever you want the filter to be applied to your current FeatureDataGrid.Items. "l" is the FeatureLayer, assuming you have already set this variable. (i.e. var l = MyMap.Layers["MyFeatureLayerId"] as FeatureLayer, or var l = MyDataGrid.GraphicsLayer). Also make sure you have "using System.Linq". The code-snippet also assumes FeatureLayer.OutFields include "status" and your service field type defined this as string where "completed" could be a possible value. You can read up on how to use linq queries here: &lt;/SPAN&gt;&lt;A href="http://code.msdn.microsoft.com/101-LINQ-Samples-3fb9811b"&gt;http://code.msdn.microsoft.com/101-LINQ-Samples-3fb9811b&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Nov 2011 18:27:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613119#M15726</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-11-19T18:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613120#M15727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I almost have this figured out, Just one last hang up.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private void FeatureLayer_MouseLeftButtonUp(object sender, GraphicMouseButtonEventArgs args)
&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; FeatureLayer featureLayer = sender as FeatureLayer;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; args.Graphic.Select();


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var l = MyMap.Layers["Dispatch"] as FeatureLayer;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; args.Graphic.Selected = !args.Graphic.Selected;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (args.Graphic.Selected)
&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; MyDataGrid.ScrollIntoView(args.Graphic, null);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyDataGrid.&lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;&lt;STRONG&gt;FilterSouce&lt;/STRONG&gt;&lt;/SPAN&gt; = (from g in l.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;&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; where g.Attributes.ContainsKey("status") &amp;amp;&amp;amp; (string)g.Attributes["status"] == "completed"
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; select g).ToList();
&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 am getting an error on this piece of code... See below&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; 'ESRI.ArcGIS.Client.Toolkit.FeatureDataGrid' does not contain a definition for 'FilterSouce' and no extension method 'FilterSouce' accepting a first argument of type 'ESRI.ArcGIS.Client.Toolkit.FeatureDataGrid' could be found (are you missing a using directive or an assembly reference?) &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a specific reference that I need to add?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jerry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:13:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613120#M15727</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2021-12-12T02:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613121#M15728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Strange.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Which SL API version are you using? (FilterSource is there for a while, but...)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 06:58:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613121#M15728</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-12-01T06:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613122#M15729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Silverlight 2.2&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 10:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613122#M15729</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2011-12-01T10:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613123#M15730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was able to get the (FilterSource) to stop having an error. After reading back into this post I realized we are putting this on a button click. I really would rather it just happen and not be on a button click. I just want the grid to show every record that does not have a status of "complete"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jerry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2011 15:58:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613123#M15730</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2011-12-07T15:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613124#M15731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is it possible for me to add a filter source code on my MainPage.xaml to exclude the grid results that have the status of complete? Below is where I think it would be added but im not sure how to write it. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;esri:FeatureDataGrid Grid.Row="2" x:Name="MyDataGrid" &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HorizontalAlignment="Stretch" &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VerticalAlignment="Stretch" &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Map="{Binding ElementName=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;&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; GraphicsLayer="{Binding ElementName=MyMap, Path=Layers.[Dispatch]}" &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Width="Auto" /&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2011 17:57:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613124#M15731</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2011-12-07T17:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613125#M15732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If all you want to see are the features that are not completed, set the Where clause in the XAML definition of your FeatureLayer....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;esri:FeatureLayer ID="Dispatch" Where="status &amp;lt;&amp;gt; complete"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something like that will "filter" your data. You could also do this in code behind somewhere.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2011 12:42:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613125#M15732</guid>
      <dc:creator>MichaelKohler</dc:creator>
      <dc:date>2011-12-08T12:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613126#M15733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This seems like what I'm looking for but the code is not quite working. I get an error message when I use the (&amp;lt;&amp;gt;) code. If I take that out and try something else the feature layer does not display anything. Is there another way of writing the code?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jerry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2011 14:07:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613126#M15733</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2011-12-09T14:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Widget (how do I limit records in the data grid?)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613127#M15734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I figured it out. I ended up using...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;FeatureLayer siteLayer = MyMap.Layers["Dispatch"] as FeatureLayer;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; siteLayer.Where = "Status &amp;lt;&amp;gt; '4'";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; siteLayer.Update(); &lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:13:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editor-widget-how-do-i-limit-records-in-the-data/m-p/613127#M15734</guid>
      <dc:creator>JerryBiedenbender</dc:creator>
      <dc:date>2021-12-12T02:13:33Z</dc:date>
    </item>
  </channel>
</rss>

