checkboxInput_dsfr.Rd
La case à cocher permet à l’utilisateur de sélectionner ou désélectionner une seule option. Elle est utilisée pour effectuer un choix binaire.
checkboxInput_dsfr(inputId, label, value = FALSE)
html
checkboxInput_dsfr(
inputId = 'test', label = 'test', value = FALSE)
#> <div class="form-group shiny-input-container">
#> <div class="fr-checkbox-group">
#> <input type="checkbox" id="test"/>
#> <label class="fr-label" id="test-label" for="test">
#> <span>test</span>
#> </label>
#> </div>
#> </div>
checkboxInput_dsfr(
inputId = 'test', label = 'test', value = TRUE
)
#> <div class="form-group shiny-input-container">
#> <div class="fr-checkbox-group">
#> <input type="checkbox" id="test" checked="checked"/>
#> <label class="fr-label" id="test-label" for="test">
#> <span>test</span>
#> </label>
#> </div>
#> </div>