Hello guys....
I have a datagrid which I've managed to make it work the way I wanted. When the user enters or updates data in the row and then moves to the next or previous row, the information is saved back to the database, I'm doing the saving in the RowEditEnding event; however, I just noticed that the data is not updating only when I move up or down, it is actually updating as soon as I move away from the row, so, if the user updates a row and even if he/she doesn't move away from the row, if he/she clicks on a "View All" button, the data is saved back to the database because it first goes through the RowEditEnding event and then goes to the "View All" button code, which is not exactly what I was looking for.
For example, if the uses changes information in one row but then decides that he/she made a mistake and does no longer want to change the information and just clicks on the "View All" button without moving to the next/previous row, the information is saved. I can see that the RowEditEnding event gets fired whenever the user clicks away from the row, and that is the problem.
Is there any way for the user to record the information only by moving to the next/previous row and not by clicking anywhere else? I hope I'm making myself clear...
Thanks
Guisselle