I have an interactive report with a radio button as 1st column. I want to change background color of the radio button or highlight the row when clicked.
If another row is selected I want to reset the previous click back to white and set the second checked radio button or row.
I created a dynamic action that highlights the row when clicked but do not know how to clear
when another radio button is clicked.
Event: Change
Selection Type: jQuery Selector
jQuery Selector: input[name=f01]
Condition: JavaSript expression
Value: this.triggeringElement.checked
True Action
Execute JavaScript Code
var l_TR=html_CascadeUpTill(this.triggeringElement,'TR')
html_RowHighlight(l_TR,'red')
?
How can I loop through all the rows to see if checked or unchecked versus each clicked row?