mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 02:34:57 -05:00
28 lines
802 B
R
28 lines
802 B
R
\name{actionButton}
|
|
\alias{actionButton}
|
|
\title{Action button}
|
|
\usage{
|
|
actionButton(inputId, label)
|
|
}
|
|
\arguments{
|
|
\item{inputId}{Specifies the input slot that will be used
|
|
to access the value.}
|
|
|
|
\item{label}{The contents of the button--usually a text
|
|
label, but you could also use any other HTML, like an
|
|
image.}
|
|
}
|
|
\description{
|
|
Creates an action button whose value is initially zero,
|
|
and increments by one each time it is pressed.
|
|
}
|
|
\seealso{
|
|
Other input.elements: \code{\link{checkboxGroupInput}},
|
|
\code{\link{checkboxInput}}, \code{\link{dateInput}},
|
|
\code{\link{dateRangeInput}}, \code{\link{fileInput}},
|
|
\code{\link{numericInput}}, \code{\link{radioButtons}},
|
|
\code{\link{selectInput}}, \code{\link{sliderInput}},
|
|
\code{\link{submitButton}}, \code{\link{textInput}}
|
|
}
|
|
|