Highlight text field if the value is changed

0
Hi all, I have a radio buttons in my application and a long list of values. when different item in the radio buttons is selected certain values is updated. I would like to highlight the values in the list that is changed. is it possible? regards, rnv 
asked
1 answers
3

When you update the values, add another attribute boolean ‘Highlighted’. When a value is updated, set Highlighted to true.

Now using dynamic classes, give a class to container widget inside which value is displayed or the value text widget itself based on the condition when Highlighted is true. Now write CSS class to change the background color or text color as you like to make it highlighted. 
When your value will change, highlighted attribute on that object will be true and it will apply the highlighted CSS class

answered