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 seeting and getting individual items. My custom class looks like this:

public abstract class TestElementList<T> : IEnumerable
        where T : class
{
    protected List<T> Data { get; set; }
    public virtual T Get(int index)
    {
        T item = Data[index];
        return item;
    }

    public virtual void Set(int index, T item)
    {
         Data[index] = item;
    }
...
}

The data is binded but when I try to edit it, i get "'EditItem' is not allowed for this view." Error. On doing extensive searching over web, I found that i might need to implement IEditableCollectionView interface also. Can anybody please help me to either give pointers on how to implement this interface or any suggest any other better way to do databinding on custom list.

Thanks in advance.

link|improve this question

71% accept rate
feedback

3 Answers

up vote 1 down vote accepted

though I am not fully understand your requirement, do you think using an ObservableCollection will solve your issue?

public abstract class TestElementList<T> : ObservableCollection<T>
    where T : class
 {
   public virtual T Get(int index)
   {
     T item = this[index];
     return item;
   }

   public virtual void Set(int index, T item)
   {
     this[index] = item;
   }
 ...
}
link|improve this answer
Hi, I tried this. But when I do so my inputList is not populated. // code to populate inputlist in main file { private InputList inputList; InputElement element = new InputElement(); inputList.Add(element); } // Code in TestInputList to add item public virtual void Add(T item) { Data.Add(item); } – Scooby Jun 8 '10 at 23:37
yes this solves it though instead of ObservableCollection, I implemented Ilist and Ilist<T> interfaces for my class and use object of this class for data binding. I am giving the object of this class as data source and set the path to specific properties in this class. hope this helps others who are facing the same issue. – Scooby Jul 21 '10 at 21:52
feedback

Just to add my own observation. I had a datagrid with specifically defined columns in Xaml and its ItemsSource set to a simple dictionary. When I tried to edit the second column, I got this exception referring to the dictionary. I then set the data grid ItemsSource to a list of the Keys (dataGrid.Keys.ToList()). I could then edit the second column. It seems a list view allows an 'EditItem'.

link|improve this answer
feedback

I had the same exception. It seems that you have to bind do IList. I was binding to a IEnumerable and this exception was thrown.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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