mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
Add type parameter to tabsetPanel to enable the use of pill style tabs
This commit is contained in:
5
NEWS
5
NEWS
@@ -31,8 +31,11 @@ shiny 0.8.0.99
|
||||
* Added `navlistPanel()` function to create layouts with a a bootstrap
|
||||
navlist on the left and tabPanels on the right
|
||||
|
||||
* Added `type` parameter to `tabsetPanel()` to enable the use of pill
|
||||
style tabs in addition to the standard ones.
|
||||
|
||||
* Added `position` paramter to `tabsetPanel()` to enable positioning of tabs
|
||||
above, below, left, or right of tab content
|
||||
above, below, left, or right of tab content.
|
||||
|
||||
* Added `fluidPage()` and `fixedPage()` functions as well as related row and
|
||||
column layout functions for creating arbitrary bootstrap grid layouts.
|
||||
|
||||
@@ -1151,19 +1151,23 @@ tabPanel <- function(title, ..., value = NULL, icon = NULL) {
|
||||
|
||||
#' Create a tabset panel
|
||||
#'
|
||||
#' Create a tabset that contains \code{\link{tabPanel}} elements. Tabsets are
|
||||
#' Create a tabset that contains \code{\link{tabPanel}} elements. Tabsets are
|
||||
#' useful for dividing output into multiple independently viewable sections.
|
||||
#'
|
||||
#' @param ... \code{\link{tabPanel}} elements to include in the tabset
|
||||
#' @param id If provided, you can use \code{input$}\emph{\code{id}} in your server
|
||||
#' logic to determine which of the current tabs is active. The value will
|
||||
#' correspond to the \code{value} argument that is passed to
|
||||
#' @param id If provided, you can use \code{input$}\emph{\code{id}} in your
|
||||
#' server logic to determine which of the current tabs is active. The value
|
||||
#' will correspond to the \code{value} argument that is passed to
|
||||
#' \code{\link{tabPanel}}.
|
||||
#' @param selected The \code{value} (or, if none was supplied, the \code{title})
|
||||
#' of the tab that should be selected by default. If \code{NULL}, the first
|
||||
#' of the tab that should be selected by default. If \code{NULL}, the first
|
||||
#' tab will be selected.
|
||||
#' @param position The position of the tabs relative to the content. Valid
|
||||
#' values are "above", "below", "left", and "right" (defaults to "above")
|
||||
#' @param type Use "tabs" for the standard look; Use "pills" for a more plain
|
||||
#' look where tabs are selected using a background fill color.
|
||||
#' @param position The position of the tabs relative to the content. Valid
|
||||
#' values are "above", "below", "left", and "right" (defaults to "above").
|
||||
#' Note that the \code{position} argument is not valid when \code{type} is
|
||||
#' "pill".
|
||||
#' @return A tabset that can be passed to \code{\link{mainPanel}}
|
||||
#'
|
||||
#' @seealso \code{\link{tabPanel}}, \code{\link{updateTabsetPanel}}
|
||||
@@ -1182,11 +1186,13 @@ tabPanel <- function(title, ..., value = NULL, icon = NULL) {
|
||||
tabsetPanel <- function(...,
|
||||
id = NULL,
|
||||
selected = NULL,
|
||||
type = c("tabs", "pills"),
|
||||
position = c("above", "below", "left", "right")) {
|
||||
|
||||
# build the tabset
|
||||
tabs <- list(...)
|
||||
tabset <- buildTabset(tabs, "nav nav-tabs", NULL, id, selected)
|
||||
type <- match.arg(type)
|
||||
tabset <- buildTabset(tabs, paste0("nav nav-", type), NULL, id, selected)
|
||||
|
||||
# position the nav list and content appropriately
|
||||
position <- match.arg(position)
|
||||
|
||||
@@ -28,7 +28,7 @@ shinyUI(fluidPage(
|
||||
# Show a tabset that includes a plot, summary, and table view
|
||||
# of the generated distribution
|
||||
mainPanel(
|
||||
tabsetPanel(
|
||||
tabsetPanel(type = "tabs",
|
||||
tabPanel("Plot", plotOutput("plot")),
|
||||
tabPanel("Summary", verbatimTextOutput("summary")),
|
||||
tabPanel("Table", tableOutput("table"))
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
\title{Create a tabset panel}
|
||||
\usage{
|
||||
tabsetPanel(..., id = NULL, selected = NULL,
|
||||
type = c("tabs", "pills"),
|
||||
position = c("above", "below", "left", "right"))
|
||||
}
|
||||
\arguments{
|
||||
@@ -20,9 +21,15 @@
|
||||
selected by default. If \code{NULL}, the first tab will
|
||||
be selected.}
|
||||
|
||||
\item{type}{Use "tabs" for the standard look; Use "pills"
|
||||
for a more plain look where tabs are selected using a
|
||||
background fill color.}
|
||||
|
||||
\item{position}{The position of the tabs relative to the
|
||||
content. Valid values are "above", "below", "left", and
|
||||
"right" (defaults to "above")}
|
||||
"right" (defaults to "above"). Note that the
|
||||
\code{position} argument is not valid when \code{type} is
|
||||
"pill".}
|
||||
}
|
||||
\value{
|
||||
A tabset that can be passed to \code{\link{mainPanel}}
|
||||
|
||||
Reference in New Issue
Block a user