checkboxInput
checkboxInput(inputId, label, value = FALSE, width = NULL)Arguments
| inputId | The inputslot that will be used to access the value. | 
|---|---|
| label | Display label for the control, or NULLfor no label. | 
| value | Initial value ( TRUEorFALSE). | 
| width | The width of the input, e.g. '400px', or'100%';
seevalidateCssUnit. | 
Value
- 
A checkbox control that can be added to a UI definition.
Description
Create a checkbox that can be used to specify logical values.
Examples
<div class="form-group shiny-input-container">
  <div class="checkbox">
    <label>
      <input id="outliers" type="checkbox"/>
      <span>Show outliers</span>
    </label>
  </div>
</div>
See also
checkboxGroupInput, updateCheckboxInput
Other input.elements: actionButton,
  checkboxGroupInput,
  dateInput, dateRangeInput,
  fileInput, numericInput,
  passwordInput, radioButtons,
  selectInput, sliderInput,
  submitButton, textInput