<?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 Clear Results From DataGrid Using a Button in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409266#M10644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have this sample Find Tool up and running: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#Find" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#Find&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; Can anyone help on coding a Button that can clear the results from the DataGrid. Any help is much appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2012 21:09:37 GMT</pubDate>
    <dc:creator>danielchaboya</dc:creator>
    <dc:date>2012-10-03T21:09:37Z</dc:date>
    <item>
      <title>Clear Results From DataGrid Using a Button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409266#M10644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have this sample Find Tool up and running: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#Find" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#Find&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; Can anyone help on coding a Button that can clear the results from the DataGrid. Any help is much appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 21:09:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409266#M10644</guid>
      <dc:creator>danielchaboya</dc:creator>
      <dc:date>2012-10-03T21:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Clear Results From DataGrid Using a Button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409267#M10645</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;SPAN&gt;try removing the Binding from DataGrid using &lt;/SPAN&gt;&lt;A href="http://stackoverflow.com/questions/1639219/clear-binding-in-silverlight-remove-data-binding-from-setbinding"&gt;http://stackoverflow.com/questions/1639219/clear-binding-in-silverlight-remove-data-binding-from-setbinding&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2012 13:29:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409267#M10645</guid>
      <dc:creator>FilipJung</dc:creator>
      <dc:date>2012-10-08T13:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Clear Results From DataGrid Using a Button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409268#M10646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi,&lt;BR /&gt;try removing the Binding from DataGrid using &lt;A href="http://stackoverflow.com/questions/1639219/clear-binding-in-silverlight-remove-data-binding-from-setbinding"&gt;http://stackoverflow.com/questions/1639219/clear-binding-in-silverlight-remove-data-binding-from-setbinding&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Interesting approach.&amp;nbsp; I'll give that a try.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 15:20:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409268#M10646</guid>
      <dc:creator>danielchaboya</dc:creator>
      <dc:date>2012-10-10T15:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Clear Results From DataGrid Using a Button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409269#M10647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Found an easy solution:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;private void btnClear_Click(object sender, RoutedEventArgs 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; this.FindDetailsDataGrid.ItemsSource = null; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 21:49:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/clear-results-from-datagrid-using-a-button/m-p/409269#M10647</guid>
      <dc:creator>danielchaboya</dc:creator>
      <dc:date>2012-10-16T21:49:40Z</dc:date>
    </item>
  </channel>
</rss>

