I'm using RowUpdating server event:
m_grid_RowUpdating(object sender, RowUpdatingEventArgs e){}
'e.Row' gets the row that has been updated, how get I get the parent row of this row?
Alexander
Hi Alexander,
Assuming that the row is in the child, this code should work.
ContainerGridRecord row = e.Row as ContainerGridRecord;
ContainerGridRecord parent = row.Owner.ControlMain.ParentRow;
regards,David Young
Thank you, David!
It works fine.