How to change background color of all the rows in a data grid where changes were made

0
Hello Everyone! I would like to change the background color of all the rows which have been modified in a datagrid in a given session. Is this possible?  
asked
1 answers
1

What you could do is add a enum value, which keeps track of the change state of an object/row. (e.g. via a beforecommit event)
Using this attribute, you can than style it in different ways as described in the forum post below.

https://forum.mendix.com/link/questions/91778

answered