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
Post a Comment