I'm trying find a way to capture the event when a templateaddrow at the top gets committed to the grid. After entering data into the templateaddrow and hitting enter, i need to know when this happens so that i can highlight the row being added and scroll it to the top. The new row is not being added to the top if the grid has some sorting. Some help would be appreciated. Thanks
In the grids BeforeRowUpdate you have the reference to the row which has an IsAddRow property. You can store the row reference in a variable and then in the AfterRowUpdate event move it to the top.
Thanks