Create a page with a top level navigation bar
Create a page that contains a top level navigation bar that can be used to
toggle a set of tabPanel()
elements.
navbarPage( title, ..., id = NULL, selected = NULL, position = c("static-top", "fixed-top", "fixed-bottom"), header = NULL, footer = NULL, inverse = FALSE, collapsible = FALSE, collapsable = deprecated(), fluid = TRUE, responsive = deprecated(), theme = NULL, windowTitle = title, lang = NULL ) navbarMenu(title, ..., menuName = title, icon = NULL)
title |
The title to display in the navbar |
... |
|
id |
If provided, you can use |
selected |
The |
position |
Determines whether the navbar should be displayed at the top
of the page with normal scrolling behavior ( |
header |
Tag or list of tags to display as a common header above all tabPanels. |
footer |
Tag or list of tags to display as a common footer below all tabPanels |
inverse |
|
collapsible |
|
collapsable |
Deprecated; use |
fluid |
|
responsive |
This option is deprecated; it is no longer optional with Bootstrap 3. |
theme |
Alternative Bootstrap stylesheet (normally a css file within the
www directory). For example, to use the theme located at
|
windowTitle |
The title that should be displayed by the browser window.
Useful if |
lang |
ISO 639-1 language code for the HTML page, such as "en" or "ko".
This will be used as the lang in the |
menuName |
A name that identifies this |
icon |
Optional icon to appear on a |
The navbarMenu
function can be used to create an embedded
menu within the navbar that in turns includes additional tabPanels (see
example below).
A UI defintion that can be passed to the shinyUI function.
Other layout functions:
fillPage()
,
fixedPage()
,
flowLayout()
,
fluidPage()
,
sidebarLayout()
,
splitLayout()
,
verticalLayout()
navbarPage("App Title", tabPanel("Plot"), tabPanel("Summary"), tabPanel("Table") ) navbarPage("App Title", tabPanel("Plot"), navbarMenu("More", tabPanel("Summary"), "----", "Section header", tabPanel("Table") ) )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.