﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - Gridview and Intersoft:UXGridViewSelectColumn.</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Gridview-and-IntersoftUXGridViewSelectColumn/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Gridview and Intersoft:UXGridViewSelectColumn.</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Gridview-and-IntersoftUXGridViewSelectColumn/</link><pubDate>Thu, 30 Oct 2014 03:50:13 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I use button with DelegateCommand and do the following to clear the CheckedItems property.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;private void ExecuteClearCheckedItems(object obj)
{
    (CheckedItems as IList).Clear();
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Clicking the button will clear the checked items in the UXGridView (please ensure that the binding Mode has been set to TwoWay).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Gridview and Intersoft:UXGridViewSelectColumn.</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Gridview-and-IntersoftUXGridViewSelectColumn/</link><pubDate>Wed, 29 Oct 2014 10:46:44 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p&gt;I am using a Gridview and Intersoft:UXGridViewSelectColumn.&lt;/p&gt;&lt;p&gt;When I process the checkedItems I want to be able to clear/reset the checkeditems. It appears that after the grid is refreshed (after some processing of the checked items) the checked items still have the original values. So if I check 2 items , do something, refresh the grid and check a new two items the checked items reports 4 items checked (2 new and 2 original).&lt;/p&gt;&lt;p&gt;How do I clear&lt;/p&gt;&lt;p&gt;private IEnumerable&amp;lt;object&amp;gt; _checkedItems;&lt;/p&gt;&lt;p&gt; /// &amp;lt;summary&amp;gt;&lt;br&gt; /// Gets or sets a collection of multiple checked items.&lt;br&gt; /// &amp;lt;/summary&amp;gt;&lt;br&gt; public IEnumerable&amp;lt;object&amp;gt; CheckedItems&lt;br&gt; {&lt;br&gt; get { return _checkedItems; }&lt;br&gt; set&lt;br&gt; {&lt;br&gt; if (_checkedItems != value)&lt;br&gt; {&lt;br&gt; _checkedItems = value;&lt;br&gt; OnPropertyChanged("CheckedItems");&lt;br&gt; }&lt;br&gt; }&lt;br&gt; }&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>