Question : How do I calculate columns of data when checkbox checked on row.

I am a noob with Java, but have been giving it three days of googleing and forums in order to figure this out,
so now I need to ask for help.

I am trying to calculate sums for each column when a check box is checked on the row.
I have an intitial Value for each column in a text field.
I then want to update the value when user adds accesarys to the intial value.
I have found a script that has gotten me part of the way.

I have tried adding additional calculations to the script to calculate the initial value, but it breaks.
I am also able to get the first column calulated, but unable to get the second or third.

If anyone has any ideas or can point me in the right direction. Not looking for you to write the code for me, just give me some ideas where I can get my pointed in the right direction to solve my problem. Here is the code I am working with.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:



 
 
 



TradeIn Value
Retail Value 
Loan Value
Accesories
+ UID Acce TradIn Acce Retail Acce Loan Acce
#UID# #TradeIn# #Retail# #Loan#
Update TradeIn Value Updated Retail Value Updated Loan Value
- Totals
Open in New Window Select All

Answer : How do I calculate columns of data when checkbox checked on row.

Another alternative is use have each cell id attribute something that can be determined based upon the row, and column number.  For example, something
like:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
Col->   0     1     2
     +-----+-----+-----+
     |     |     |     |
  0  | 00  | 01  | 02  |
     |     |     |     |
     +-----+-----+-----+
     |     |     |     |
  1  | 10  | 11  | 12  |
     |     |     |     |
     +-----+-----+-----+
     |     |     |     |
  2  | 20  | 21  | 22  |
     |     |     |     |
     +-----+-----+-----+
Open in New Window Select All
Random Solutions  
 
programming4us programming4us