Click here to Skip to main content
16,021,430 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a editable nested repeater containing the data.I use it for showing the data and also for saving the data which is updated by the user.
I want to detect particular cell/row for which the data has been modified by the user so that I can update only that particular row in the database instead of saving all the data again.
Is there a way to work this out.Which would be the best technique to use ,JavaScript or server side code ?
HTML
Resource country etc |    Week1 Week2 Week3  | Total
ABC        XYZ             10     15    20      45


This is the repeater structure.
Middle one (Weeks showing hours worked by resource which is editable) is the nested repeater.
Values can only be changed in the nested repeater.
I maintain unique ID's for each resource in the hidden field.

Can you suggest me some ways to achieve this functionality ?
Posted
Updated 6-Feb-12 2:39am
v2
Comments
Herman<T>.Instance 6-Feb-12 8:41am    
why don't you use the gridview component? You can edit a row and based on the keynames you can update that single row in the database.
Warreer 6-Feb-12 9:05am    
The complications does not permit me to use the gridview.Performance is the problem
Herman<T>.Instance 6-Feb-12 9:10am    
if performance is this issue use javascript or jQuery
Herman<T>.Instance 6-Feb-12 9:16am    
and update with async ado.net. Your website goes on while the data is handled in a different thread.

hi,

Maybe this[^] is something that will help you.
Just make a better look. I think that this can be useful to you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900