I have DataGrid and inside it one of the columns is a TextBox. The DataGrid is generated dynamically from Database. It is for invoicing. One invoice might have two rows, another might have 10. The ID of each of these textboxes are different, and I need to read the value of each of these text boxes when the user enters an amount, add all of them up, and show the total in another field.
Problem: I don't know how to get to each textbox (there is ValueChanged event that fires when the user enters an amount for that specific text box)
I'm trying to solve this using Javascript or JQuery. (No updatePanel)
Any help is greatly appreciated.
Thanks.