Power Table Cell Highlight

Hello,

I have a power table that queries a table in the database. What I would like to do is highlight the cell when the value changes from row to row. Its a transaction group table that monitors Setpoints and adds a row when a setpoint is changed. I am not sure where to begin and my scripting skills are not quite there yet. I will try anything you guys suggest. Thanks in advance for the help.

For this kind of behavior I generally use a custom property to hold the key for the row with the selection. In a propertyChange event monitoring the data property, lookup the new row index for the key and use invokeLater to assign that row index to the selectedRow property.

You can’t just make the assignment within that propertyChange because Vision saves selectedRow before the data change and restores it after, which would wipe out any change in the middle.