In my editable nested repeater, I have data that is displayed to the user and also used for saving any updates made by the user. I am looking for a way to detect when a specific cell/row has been modified so that I can update only that row in the database without saving all the data again. Should I use JavaScript or server-side code to accomplish this? What would be the best technique?
Resource | Week1 Week2 Week3 | Total
ABC | XYZ 10 15 20 | 45
This is the structure of the repeater with the middle section (Weeks showing hours worked by resource) being the editable nested repeater. The values can only be changed within the nested repeater. Each resource has a unique ID maintained in a hidden field.
Do you have any suggestions on how I can achieve this functionality effectively?