shiny (version 0.9.1)

navlistPanel: Create a navigation list panel

Description

Create a navigation list panel that provides a list of links on the left which navigate to a set of tabPanels displayed to the right.

Usage

navlistPanel(..., id = NULL, selected = NULL, well = TRUE, fluid = TRUE,
  widths = c(4, 8))

Arguments

Details

You can include headers within the navlistPanel by including plain text elements in the list; you can include separators by including "------" (any number of dashes works).

Examples

Run this code
shinyUI(fluidPage(

  titlePanel("Application Title"),

  navlistPanel(
    "Header",
    tabPanel("First"),
    tabPanel("Second"),
    "-----",
    tabPanel("Third")
  )
))

Run the code above in your browser using DataLab