Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have 2 column PRICE and PAYMENT in Datagrid
when i change value of 1 any cell in this Datagrid, other cells also change the value.
Example:
PRICE | PAYMENT
100 | 80 |
20 | 10 |
10 | 5 |

Note:
Row2.cells[0] = row1.cells[0] - row1.cells[1]
similar: row3.cells[0] = row2.cells[0] - row2.cells[1]
Column 1 have value read only. Only column 2 can edit value
Value each row change depends previous line.

when i change value row1.cells[1]= 60, it change below:
row2.cells[0]=40
row2.cells[1] = 40
row3.cells[0] = 0
row3.cells[1] = 0
Posted
Comments
Abhinav S 23-May-11 1:13am    
So what is your question?
duonglg 23-May-11 2:33am    
i want change value automatically when have a value change in that column

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