Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
325
Template Add Row
posted

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

Parents
No Data
Reply
  • 735
    Verified Answer
    posted

    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.

Children