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
20
Detect if grid have changed rows in client side, after server side modification
posted

Hi,

I need to know if UltraWebGrid have changed rows from client side, after some cell value was modified in server side. I know that this can be done with: igtbl_getLength(grid.ChangedRows); but this only works if the user made the change directly in the grid.

If the change is made in server side (for example a button that change some cell values, lets say something like grid.Rows[i].Cells[j].Value = newValue;)  then in client side operations the "igtbl_getLength(grid.ChangedRows)" sentence say 0 (ZERO Rows modified).

How can I get the modified rows from client side? Thanks a lot!