Hi there,
I am trying to use HandsonTable in React.js. I have a usecase where I should develop a simple table which looks like this:
A B Sum
2 5 7
3 8 11
Basically the idea is to get the sum of values in A and B column in the same row in Sum column. The table must react to any changes in the values of A and B and automatically display Sum whenever there is any change in A and B. I am new to HandsonTable so I am struggling to implement this in React.js.
Any help would be greatly appreciated