Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
248 views

What is the type of object added by IEditableCollectionView?

Adding objects with the IEditableCollectionView addNew() method is pretty decent. However I'm not sure how well it works with my generic code I have. I have a ObservableCollection of my base class. ...
3
votes
1answer
500 views

WPF: IEditableCollectionView and CanAddNew and empty collections

We were having some issues with the wpf datagrid and IEditableCollectionView (although this question applies to using IEditableCollectionView and ItemsControl) When you have a collection with no items ...
2
votes
2answers
3k views

'EditItem' is not allowed for this view - databinding issue

I am trying to do data binding in WPF on data grid using a cutom list. My custom list class contains a private data list of type List. I can not expose this list however the indexers are exposed for ...
1
vote
2answers
117 views

Why Use IEditableCollectionView?

I've got a project I've got to crank out (thanks to an employee quitting on the job before the deadline). He'd been working in WPF. The interface looked cool, but it never was able to collect data ...
1
vote
1answer
349 views

WPF: How to use views like ICollectionView and IEditableCollectionView

I understand the syntax but not how really to use it. It's clear in many basic scenarios but as soon as it get's a little bit advanced I start getting a headache. For example there are many different ...
0
votes
2answers
245 views

WPF Listview with ListViewCollection - Listview not reflecting the collection's changes.

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 = ...
0
votes
1answer
1k views

cannot add new item to PagedCollectionView in SL4 app with WCF RIA Services

I created a wcf ria service application (with Silverlight 4 and SQL Server 2008 Express). Within my domain model I have two tables projects and times which are linked by a foreign key. This works all ...
0
votes
1answer
40 views

How to filter on a constantly updated collection displayed in grid?

Let's say I have a WPF application that shows "questions". Questions can have different statuses, such as "open", and "answered". The questions are stored in an ObservableCollection and displayed on a ...