I am in the process of developing a basic web-based expense calculator using asp.net web forms. Each cell will contain a text box, and the objective is to save each value (excluding the totals) to a database. I plan to have an expense table and an expense_day table to store the values for each row of text boxes.
The calculator will consist of rows representing a week's worth of data, with 6-8 columns. It is necessary to calculate the total of each row as well as each column.
Is there a simple JavaScript framework available that can facilitate this task? We are currently using jQuery, but I am open to incorporating another lightweight specialized library if it simplifies the functionality.
Update:
An ideal solution would be similar to the one described in this question, expanded to calculate totals for columns as well.