Hi,
I've made a RadGridView with hierarchy based on a list of Objects.
All works on 1st level in read/write but when i edit a value in my sub-gridview, object value is not updated :/
Here is the relation code :
Dim
relation
As
New
GridViewRelation(rgvDeliberations.MasterTemplate)
relation.ChildTemplate = template
relation.ParentColumnNames.Add(
"Titre"
)
relation.ChildColumnNames.Add(
"Titre"
)
rgvDeliberations.Relations.Add(relation)
Do you have an idea pls ?
Best Regards