ebailey78 / shinyBS

Twitter Bootstrap Components for Shiny
182 stars 47 forks source link

addPopover Doesn't Work for datatable Object #43

Open DarioS opened 9 years ago

DarioS commented 9 years ago

I have a data table created using the DT package.

output[["scoresTable"]] <- DT::renderDataTable(datatable(aTable))

When I create a popover for it, nothing appears and there are no errors in the R console.

addPopover(session, "scoresTable", "Data", content = "<p>Waiting time</p>")

Also, may the documentation be more specific about what content the popover can show ? I was thinking about clicking a cell in a table and drawing a scatterplot in the popover. Is it limited to showing text ?