navlistPanel
navlistPanel(..., id = NULL, selected = NULL, well = TRUE, fluid = TRUE,
  widths = c(4, 8))Arguments
| ... | tabPanelelements to include in the navlist | 
|---|---|
| id | If provided, you can use input$idin your
server logic to determine which of the current navlist items is active. The
value will correspond to thevalueargument that is passed totabPanel. | 
| selected | The value(or, if none was supplied, thetitle)
of the navigation item that should be selected by default. IfNULL,
the first navigation will be selected. | 
| well | TRUEto place a well (gray rounded rectangle) around the
navigation list. | 
| fluid | TRUEto use fluid layout;FALSEto use fixed
layout. | 
| widths | Column withs of the navigation list and tabset content areas respectively. | 
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.
Details
You can include headers within the navlistPanel by including
  plain text elements in the list. Versions of Shiny before 0.11 supported
  separators with "------", but as of 0.11, separators were no longer
  supported. This is because version 0.11 switched to Bootstrap 3, which
  doesn't support separators.
Examples
shinyUI(fluidPage(
  titlePanel("Application Title"),
  navlistPanel(
    "Header",
    tabPanel("First"),
    tabPanel("Second"),
    tabPanel("Third")
  )
))
<div class="container-fluid">
  <h2>Application Title</h2>
  <div class="row">
    <div class="col-sm-4 well">
      <ul class="nav nav-pills nav-stacked">
        <li class="navbar-brand">Header</li>
        <li class="active">
          <a href="#tab-6149-1" data-toggle="tab" data-value="First">First</a>
        </li>
        <li>
          <a href="#tab-6149-2" data-toggle="tab" data-value="Second">Second</a>
        </li>
        <li>
          <a href="#tab-6149-3" data-toggle="tab" data-value="Third">Third</a>
        </li>
      </ul>
    </div>
    <div class="col-sm-8">
      <div class="tab-content">
        <div class="tab-pane active" data-value="First" id="tab-6149-1"></div>
        <div class="tab-pane" data-value="Second" id="tab-6149-2"></div>
        <div class="tab-pane" data-value="Third" id="tab-6149-3"></div>
      </div>
    </div>
  </div>
</div>