Home
last modified time | relevance | path

Searched refs:choiceNames (Results 1 – 11 of 11) sorted by relevance

/dports/www/R-cran-shiny/shiny/R/
H A Dinput-utils.R20 normalizeChoicesArgs <- function(choices, choiceNames, choiceValues, argument
25 if (is.null(choiceNames) || is.null(choiceValues)) {
30 if (is.null(choiceNames) && is.null(choiceValues)) {
34 return(list(choiceNames = NULL, choiceValues = NULL)) nameattr
41 if (length(choiceNames) != length(choiceValues)) {
44 if (anyNamed(choiceNames) || anyNamed(choiceValues)) {
48 if (!is.null(choiceNames) || !is.null(choiceValues)) {
52 choiceNames <- names(choices)
56 return(list(choiceNames = as.list(choiceNames), nameattr
63 choiceNames, choiceValues, argument
[all …]
H A Dinput-checkboxgroup.R75 inline = FALSE, width = NULL, choiceNames = NULL, choiceValues = NULL) { argument
78 if (is.null(choices) && is.null(choiceNames) && is.null(choiceValues)) {
82 args <- normalizeChoicesArgs(choices, choiceNames, choiceValues)
90 'checkbox', args$choiceNames, args$choiceValues)
H A Dinput-radiobuttons.R90 inline = FALSE, width = NULL, choiceNames = NULL, choiceValues = NULL) { argument
92 args <- normalizeChoicesArgs(choices, choiceNames, choiceValues)
102 'radio', args$choiceNames, args$choiceValues)
H A Dupdate-input.R457 choiceNames = NULL, choiceValues = NULL) { argument
462 args <- normalizeChoicesArgs(choices, choiceNames, choiceValues, mustExist = FALSE)
469 args$choiceNames, args$choiceValues)
519 choiceNames = NULL, choiceValues = NULL) argument
524 inline, "checkbox", choiceNames, choiceValues)
565 choiceNames = NULL, choiceValues = NULL) argument
575 inline, 'radio', choiceNames, choiceValues)
/dports/www/R-cran-shiny/shiny/tests/testthat/
H A Dtest-bootstrap.r47 choiceNames = list(icon('calendar'), HTML('<p style="color:red;">Red</p>'), 'Normal'),
266 expected <- list(choiceNames = list("a", "b"), choiceValues = list("a", "b")) nameattr in list
271 expected <- list(choiceNames = list("one", "two"), choiceValues = list("a", "b")) nameattr in list
281 expected <- list(choiceNames = list("a", "b"), choiceValues = list("1", "2")) nameattr in list
290 expected <- list(choiceNames = nms, choiceValues = vals) nameattr
297 expect_equal(res, list(choiceNames = list("a", "b"), choiceValues = list("a", "b"))) nameattr in list
300 expected <- list(choiceNames = list(), choiceValues = list()) nameattr in list
318 expected <- list(choiceNames = NULL, choiceValues = NULL) nameattr
330 choiceNames = NULL, choiceValues = NULL)
/dports/www/R-cran-shiny/shiny/man/
H A DcheckboxGroupInput.Rd14 choiceNames = NULL,
25 this argument is provided, then \code{choiceNames} and \code{choiceValues}
36 \item{choiceNames, choiceValues}{List of names and values, respectively,
38 choice (for this reason, \code{choiceNames} and \code{choiceValues}
42 a named list for \code{choices} is that \code{choiceNames} allows any
81 choiceNames =
H A DupdateCheckboxGroupInput.Rd14 choiceNames = NULL,
28 this argument is provided, then \code{choiceNames} and \code{choiceValues}
36 \item{choiceNames}{List of names and values, respectively,
38 choice (for this reason, \code{choiceNames} and \code{choiceValues}
42 a named list for \code{choices} is that \code{choiceNames} allows any
48 choice (for this reason, \code{choiceNames} and \code{choiceValues}
52 a named list for \code{choices} is that \code{choiceNames} allows any
H A DupdateRadioButtons.Rd14 choiceNames = NULL,
28 this argument is provided, then \code{choiceNames} and \code{choiceValues} must not
38 \item{choiceNames}{List of names and values, respectively, that
40 this reason, \code{choiceNames} and \code{choiceValues} must have the same length).
43 over a named list for \code{choices} is that \code{choiceNames} allows any type of UI
49 this reason, \code{choiceNames} and \code{choiceValues} must have the same length).
52 over a named list for \code{choices} is that \code{choiceNames} allows any type of UI
H A DradioButtons.Rd14 choiceNames = NULL,
25 this argument is provided, then \code{choiceNames} and \code{choiceValues} must not
38 \item{choiceNames, choiceValues}{List of names and values, respectively, that
40 this reason, \code{choiceNames} and \code{choiceValues} must have the same length).
43 over a named list for \code{choices} is that \code{choiceNames} allows any type of UI
95 choiceNames = list(
/dports/net-mgmt/icingaweb2-module-director/icingaweb2-module-director-1.6.2/library/Director/Web/Form/
H A DDirectorObjectForm.php1182 $choiceNames = $db->fetchCol(
1189 $choiceNames = [];
1202 'hideOptions' => $choiceNames,
/dports/www/R-cran-shiny/shiny/
H A DNEWS.md630choiceNames` (list or vector) and `choiceValues` (list or vector). These can be passed in as an al…