If it is a bug of the latest version of shiny, we will definitely fix
it, but I cannot reproduce the error with this minimal example:
library(shiny)
runApp(list(
ui=fluidPage(tags$textarea(
id="text", rows=5, cols=8, "this is a text area"
)),
server=function(input,output){
observe(print(input$text))
}
))
> sessionInfo()
R version 3.1.1 (2014-07-10)
Platform: x86_64-apple-darwin13.3.0 (64-bit)
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] shiny_0.10.1
loaded via a namespace (and not attached):
[1] bitops_1.0-6 caTools_1.17 digest_0.6.4 htmltools_0.2.4
httpuv_1.3.0
[6] Rcpp_0.11.2 RJSONIO_1.3-0 tools_3.1.1 xtable_1.7-3
Regards,
Yihui