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
440
Saving only changed rows of grid
posted

Hi

I have huge amount of data in my ultrawebgrid. I'm able to save on update_row.

Now my requirement is to save only the changed rows to database On a button click. Can anyone help me here?

Is it possible to persist the modified rows on paging also?

Thanks

Sam

  • 12679
    Verified Answer
    posted

    Hi Sam,

    RowUpdating and RowUpdateBatch events are supposed to be raised on each postback as long as any rows are changed. The click event should comes next. If you use any kind of in memory representation of your data (dataset, datatable) you can handle the mentioned events to update it and the click event handler to save the data in database.

    Hope this helps.