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

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -