I've got an html table that is being generated with php.
This list can have records of over 20000 records, so I added a paging on this list. In this list you can modify the rows you like, when you hit save, it saves the changes in a temp table and only after you hit apply changes, the actual changes are applied in the main table. Before you hit apply changes, it shows in the list the changed rows with an indicator.
Now all this works, but currently when you only change 1 row of the 50 that are shown, it saves the 50 rows in the temp table. Which gives me an indicator on all 50 records (not really what I want).
My question is: what is a good way to know which row is changed before saving this in my temp table?