modifing cell value when another cell value is changed

modifing cell value when another cell value is changed

INRINR Posts: 20Questions: 2Answers: 1

Hi,

I have a code to modify a cell value when another column is modified on the same row. but the value is not reflecting on the grid.

var rate = selectedrow.data().rate;
rate = rate + ( rate * 10/100);
selectedrow.data().new_rate = rate;

the column gets updated, but its not showing in the grid.

Answers

  • colincolin Posts: 15,112Questions: 1Answers: 2,583

    Hi @INR ,

    Take a look at this example - there are a couple of ways of doing it there.

    Cheers,

    Colin

  • INRINR Posts: 20Questions: 2Answers: 1

    Thanks Colin. I think its different problem and I think its better to purchase editor license. today I have purchased the Editor license using my company account.

    I will do the rework of my editable columns using Editor.

This discussion has been closed.