My requirement is that when the user clicks the edit command on the parent row, all rows in the child table should be put into edit mode. I tried the following in the grid's itemcommand event, but it didn't work:
Dim dataitem As GridDataItem = DirectCast(e.CommandSource, GridDataItem)
For Each editItem As GridDataItem In dataitem.ChildItem.NestedTableViews(0).Items
editItem.Edit = True
Next
Dim dataitem As GridDataItem = DirectCast(e.CommandSource, GridDataItem)
For Each editItem As GridDataItem In dataitem.ChildItem.NestedTableViews(0).Items
editItem.Edit = True
Next