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
Solved! Go to Solution.
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.
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.