Highlight selected row Inputs.table

Is there any way to highlight a selected row in Inputs.table?
So I have had some like this:

penguins = d3.csv(
  "https://raw.githubusercontent.com/allisonhorst/palmerpenguins/master/inst/extdata/penguins.csv", 
  d3.autoType
)

and then:

Inputs.table(penguins)

Is there any way to highlight the entire row (say a filled background) when that table is selected? It is sometimes helpful to really shine something on that selection for a user.

You’ll need a custom wrapper like this one:

Ah thanks. This is so nice though I was hoping that there was some flag I could specify in Inputs itself :wink: