javascript - Use renderUI to call a dashboardPage in shiny -


in http://shiny.rstudio.com/articles/dynamic-ui.html, shows how use renderui call ui function in server; doesn't work dashboardpage. guess problem stays @ class of dashboardpage while renderui generates different class of object??? problem fixed?

i used these codes test renderui on dashboardpage:

shinyapp(   ui<-(uioutput("x",replace=t)), server<-function(input,output){   output$x<-     renderui(dashboardpage(     dashboardheader(),     dashboardsidebar(),     dashboardbody()   )) }) 


Comments

Popular posts from this blog

minify - Minimizing css files -

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -