% Generated by roxygen2: do not edit by hand % Please edit documentation in R/numericButtonInput.R \name{numericButtonInput} \alias{numericButtonInput} \title{A numeric input with an action button attached which can be used for clearing or setting a value on trigger} \usage{ numericButtonInput( inputId, label, buttonText = NULL, buttonIcon = NULL, min = NULL, max = NULL, step = NULL, value, ... ) } \arguments{ \item{inputId}{The \code{input} slot that will be used to access the value.} \item{label}{Display label for the control, or \code{NULL} for no label.} \item{buttonText}{The text to display in the action button} \item{buttonIcon}{An icon to display in the action button} \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.} \item{...}{Ignored, included to require named arguments and for future feature expansion.} } \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()}} }