I have a listview that's bound to a ListCollectionView. The LCV has a single sortdescription at any time. I am updating the collection in this manner:

IEditableCollectionView IEditView = lvBatches.Items as IEditableCollectionView;

IEditView.EditItem(m_collectionView.CurrentItem);//I've also tried passing MyListView.SelectedItem
((TestData)IEditView.CurrentEditItem).start = frm.newDate;
((TestData)IEditView.CurrentEditItem).edited = true;
IEditView.CommitEdit();

However, when I do, nothing happens to the listview's items. If I re-sort the list, the changes are then reflected. A Refresh() on the collection also updates the listview, but that's like using a stick of dynamite to open a soda can, from what I gather.

Does anyone have any ideas. My above code looks like the examples I'm seeing around the 'net so I don't think that's the problem. Are there any common mistakes people make anyone is aware of, maybe something to do with the sorting? I had it working and now it's not and I have no idea what broke it.

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Are you calling NotifyPropertyChanged? If a Refesh() shows the correct values then most likely they are in the collection but the UI has to know to update value.

link|improve this answer
Haha. I was just about to post this as the answer. Damn - you get the point! – Yatrix Aug 1 '11 at 19:18
This is the link, for those of you who need it: msdn.microsoft.com/en-us/library/… – Yatrix Aug 1 '11 at 19:24
feedback

See my answer about creating a VeryObservableCollection.

The problem you are experiencing is that collections do not update with mere property changes -- CollectionChanged only fires if you add or remove elements. So you need to hook PropertyChanged and send a CollectionChanged when a property changes, which is what VeryObservableCollection does.

link|improve this answer
But I'm not using an ObserverableCollection to begin with, I'm using a ListCollectionView which should work when used with IEditableCollectionView as I have. I'd have to rewrite a bunch of stuff to handle the different collection. The thing is, I HAD this working and something broke it and I have no idea what did. By using iEditableCollectionView, it should allow me to EditItem and then CommitEdit which should tell the listview to update, right? – Yatrix Jul 29 '11 at 20:55
To be using a ListCollectionView you need to have a bound collection in there somewhere, right? Not sure about EditItem and what it does. – AresAvatar Jul 29 '11 at 21:01
@Jamison Yates, AresAvatar is correct in saying that the SOURCECOLLECTION of your CollectionView must be an ObservableCollection. – AngelWPF Jul 30 '11 at 6:04
I'm confused. ListCollectionView takes an IList as it's only parameter. How do I have an ObserverableCollection as its source collection? The SourceCollection property is readonly. I tried using an ObserveableCollection bound to my listview to begin with, bu (ListViewItem)MyListView.ItemContainerGenerator.ContainerFromIndex(index) would always return null for some reason after update. Any code examples would be great that you can share on how to either use an ObsCollection as the source to a ListCView or how to get the item back from the ItemContainerGenerator after the collection is updated. – Yatrix Aug 1 '11 at 13:57
@Jamison: when you set up the ListView, what is its Source? That is the collection you want to work with, not the ListCollectionView. – AresAvatar Aug 1 '11 at 15:32
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.