Files
AVSDevR.ShinyInputs/man/updateNumericButtonInput.Rd

41 lines
1.1 KiB
R

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/numericButtonInput.R
\name{updateNumericButtonInput}
\alias{updateNumericButtonInput}
\title{A numeric input with an action button attached which can be used for clearing
or setting a value on trigger}
\usage{
updateNumericButtonInput(
session,
inputId,
label = NULL,
min = NULL,
max = NULL,
step = NULL,
value = NULL
)
}
\arguments{
\item{session}{The \code{session} object passed to function given to
\code{shinyServer}. Default is \code{getDefaultReactiveDomain()}.}
\item{inputId}{The id of the input object.}
\item{label}{The label to set for the input object.}
\item{min}{Minimum allowed value}
\item{max}{Maximum allowed value}
\item{step}{Interval to use when stepping between min and max}
\item{value}{Initial value.}
}
\description{
A numeric input with an action button attached which can be used for clearing
or setting a value on trigger
}
\seealso{
\code{\link[shiny:numericInput]{shiny::numericInput()}}, \code{\link[shiny:updateNumericInput]{shiny::updateNumericInput()}}
}