Did something change in the latest Shiny update to keep embedded links from rendering correctly?
When using a dataTableOutput, links I'd embed in datatable output worked just fine. Now they don't.
Here's what I have:
I have some data that I used a paste function to wrap into a URL like so:
This starts out as
data$Link <- paste("http://pageyouneedtosee.com/", data$ordernumber, sep="")
then
data$Link <- paste("<a href=\"", data$Link,"\"", "\ target=\"_blank", "\">", "Link", "</a>", sep="" )
so I end up with a data table of
ordernumber | Link
____________________
When I drop this link into a blank HTML page and test it in a browser (FF, Chrome, IE8), it works just fine.
So near as I can tell, the link building isn't the problem -- it's how they're getting rendered in Shiny.
I know Shiny went from bootstrap2 to bootstrap3, but I don't know enough about either to know what might have broken here.
Any ideas?
Thanks