support for otuput tabsets

This commit is contained in:
JJ Allaire
2012-07-20 11:31:58 -07:00
parent 13ecf8ef21
commit 7466baf1b2
3 changed files with 41 additions and 3 deletions

View File

@@ -24,9 +24,11 @@ clientPage(
),
mainPanel(
verbatimTextOutput("summary1"),
plotOutput("plot1"),
tableOutput("table1")
tabset(
tab("Summary", verbatimTextOutput("summary1")),
#tab("Plot", plotOutput("plot1")),
tab("Table", tableOutput("table1"))
)
)
)
)