submitButton
From shiny v0.12.2
by Winston Chang
Create a submit button
Create a submit button for an input form. Forms that include a submit button do not automatically update their outputs when inputs change, rather they wait until the user explicitly clicks the submit button.
Usage
submitButton(text = "Apply Changes", icon = NULL, width = NULL)
Arguments
- text
- Button caption
- icon
- Optional
icon
to appear on the button - width
- The width of the button, e.g.
'400px'
, or'100%'
; seevalidateCssUnit
.
Value
- A submit button that can be added to a UI definition.
See Also
Other input.elements: actionButton
,
actionLink
; animationOptions
,
sliderInput
;
checkboxGroupInput
;
checkboxInput
; dateInput
;
dateRangeInput
; fileInput
;
numericInput
; passwordInput
;
radioButtons
; selectInput
,
selectizeInput
; textInput
Examples
submitButton("Update View")
submitButton("Update View", icon("refresh"))
Community examples
Looks like there are no examples yet.