I have a RadGridView
with binding to an ObservableCollection
of TestType
.
TestType
contains 3 members:
string TestString;
Int TestInt;
List<string> TestCollection;
I added 3 record to the ObservableCollection
.
The binding works, and I can see the records.
When i'm trying to edit the table, I can't edit the TestList
member cell.
In winforms property grid i added an EditorAttribute
like that:
[Editor typeof(CollectionUITypeEditor), typeof(UITypeEditor)].
And than, the member will be editable with a custom editor (in the property grid).
Is there anyway to make custom editor works at cell editting?