Hi, I have multiple groups of buttons and I want to highlight in each group the button with the highest timestamp. With group I just mean buttons within one single html parent element.
I am using dashR.
htmlDiv(className = "element_buttons", children = list(
htmlButton('1', className = "buttons", id='one', n_clicks_timestamp=0),
htmlButton('2', className = "buttons", id='two', n_clicks_timestamp=1),
htmlButton('3', className = "buttons", id='three', n_clicks_timestamp=0)
))
In this case button ‘2’ should have a different background color.
Thank you very much