Description Usage Arguments Details See Also Examples
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.
1 2 |
... |
|
id |
If provided, you can use |
selected |
The |
well |
|
fluid |
|
widths |
Column withs of the navigation list and tabset content areas respectively. |
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.
1 2 3 4 5 6 7 8 9 10 11 | fluidPage(
titlePanel("Application Title"),
navlistPanel(
"Header",
tabPanel("First"),
tabPanel("Second"),
tabPanel("Third")
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.