AfterRowInsert is fired too early for my needs. My grids have a fixed add row at the top. My users enter data, hit enter, and then the row is committed. I need an event that fires when this happens. Do I have any options?
Good point.[:)]
Thanks again Mike. Works perfectly. You actually have to use BeforeRowUpdate/IsAddRow, because by the time AfterRowUpdate is fired IsAddRow = false.
Yes, use Before/AfterRowUpdate.
You can determine if the row being committed is an existing row or a new row by checking the IsAddRow property on the row.