That is really odd. You are not the only person who has reported this
issue, but I have not been able to reproduce it. Could you upgrade to
R 3.1.3 and try again if it is not too inconvenient for you? I doubt
that could be the reason, though. BTW, can you also post the output of
library(shiny);sessionInfo() in R, along with the web browser version
that you were using?
The long-term plan is to move DataTables out of shiny to the new DT
package (
http://rstudio.github.io/DT/). Can you install the
development versions of shiny and DT, and see if the warning is still
there? Thanks!
devtools::install_github(c('rstudio/shiny', 'rstudio/DT'))
The app will have to be modified a little bit:
# ui.R
shinyUI(fluidPage(
fluidRow(
column(12,
DT::dataTableOutput('table')
)
)
))
# server.R
library(DT)
shinyServer(function(input, output) {
output$table <- DT::renderDataTable(datatable(iris))
})
Regards,
Yihui
> --
> You received this message because you are subscribed to the Google Groups
> "Shiny - Web Framework for R" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
shiny-discus...@googlegroups.com.
> To view this discussion on the web visit
>
https://groups.google.com/d/msgid/shiny-discuss/8eac82dc-79cf-421f-bf97-1043b8a21c36%40googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.