tooltip or popover in Shiny datatables for row names?
I’m stuck with trying to include something like a tooltip or popover with additional info when the user hovers over / clicks on the row names of a datatable, so they don’t have to look up some definitions, which I currently have on a different tabPanel. Here's a working example: server.R: library(shiny) library(DT) library(shinyBS) # Define server for the Shiny app shinyServer(function(input, output,session) { tdata <- as.data.frame(iris) # Render table here output$mytable <- DT::renderDataTable(DT::datatable( tdata[1:5,], options = list(paging = FALSE, searching = FALSE, info = FALSE, sort =