we are binding the grid using a List object - not a dataset.
I was getting an error - not able to add new row because of the underlying datasource - but I can trap the BeforeRow Insert event to manual open a new row in the grid.
I used the error event to trap the error and was able to add a new row in the parent band, but the child band does nothing when I click on add new row. I added a new row in the parent list to open the parent row.
what event is fired when the child band - add new row is clicked??
any help would be great.
Try BeforeRowInsert.
An alternative would be to use a BindingList instead of a List. The BindingList can support adding rows.