Hello.
How to remove a row from the child band programmatically?
Removing from the 'root' band:
xGrid.Rows.Remove(rowToRemove);
Thank you.
You'll need to access the ChildBand's row collection for a specific parent row:
xGrid.Rows[0].ChildBands["ChildBandName"].Rows.Remove(rowToRemove);
As a colleague of mine suggested, it's always better to remove the corresponding object from your data collection instead of removing grid rows.
Hope this helps