shinybootstrap2 (version 0.2.1)

submitButton: Create a submit button

Description

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)

Arguments

text
Button caption
icon
Optional icon to appear on the button

Value

A submit button that can be added to a UI definition.

See Also

Other input.elements: animationOptions, sliderInput; checkboxGroupInput; checkboxInput; dateInput; dateRangeInput; numericInput; radioButtons; selectInput, selectizeInput; textInput

Examples

Run this code
library(shiny)
submitButton("Update View")
submitButton("Update View", icon("refresh"))

Run the code above in your browser using DataCamp Workspace