Skip to main content
16-Pearl
January 20, 2021
Solved

How to check which particular field/row value has changed in Grid Advanced twx 9.1

  • January 20, 2021
  • 1 reply
  • 808 views

Hi,

I have to set alert when row value changed in grid. i will have one service to get which row has made changes.

i want to have alert for specific value changed in grid. how we can do it in TWX ?

 

Thanks 

Best answer by SachinSharma

You can use EditedTable output from the Grid Advanced which contains all modified rows that are in memory.
Provide EditedTable as an input to a custom service which would compare the original table with the edited table and compare the values from the columns (this will give the modified columns).
Then pass the output to a validator function which would check for the value change as per the expression. 

1 reply

16-Pearl
January 20, 2021

You can use EditedTable output from the Grid Advanced which contains all modified rows that are in memory.
Provide EditedTable as an input to a custom service which would compare the original table with the edited table and compare the values from the columns (this will give the modified columns).
Then pass the output to a validator function which would check for the value change as per the expression.