I have a history table which shows Updates on a specific table. It contains all the columns of the table. I am displaying the history table in a grid application. I want to Highlight the column values that have changed, the Database actions(Insert,Update,Delete) are sorted by date so all I have to do is compare the current row with the previous row where the ID is the same
I thought I could insert some code into the onRecord event to iterate through the columns to compare them to previous row and highlight them if they have changed.
Is there a way to Iterate through the field names using a SC macro or session variable or should I approach this using javascript ?