Gridview and Intersoft:UXGridViewSelectColumn.

1 reply. Last post: October 30, 2014 3:50 AM by Yudi
Tags :
  • (None)
  • New Discussion
  • New Question
  • New Product Feedback

I am using a Gridview and Intersoft:UXGridViewSelectColumn.

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).

How do I clear

private IEnumerable<object> _checkedItems;

/// <summary>
/// Gets or sets a collection of multiple checked items.
/// </summary>
public IEnumerable<object> CheckedItems
{
get { return _checkedItems; }
set
{
if (_checkedItems != value)
{
_checkedItems = value;
OnPropertyChanged("CheckedItems");
}
}
}



All times are GMT -5. The time now is 4:43 PM.
Previous Next