I have renderTable with url links:
output$url_list <- renderTable({
url_list<-as.data.frame(urls_from_plg_table())
}, sanitize.text.function = function(x) x, target="_blank",
options = list(aLengthMenu = c(5, 30, 50), iDisplayLength = 5))
I want to open the URLs from this table in a new tab from my shiny app.
I try add: target="_blank", but it doesn't work in this way. How can I go about it?
Thank you!
urls_from_plg_table()? What kind of data does that store?