Like option_list() but allows the user to toggle multiple items on/off.
Examples
if (FALSE) { # \dontrun{
quick_app(
layout = vstack(
static("Select permissions:"),
selection_list(items = c("Read", "Write", "Execute"),
id = "perms"),
static("", id = "chosen"),
id = "root"
),
on_change = list(
perms = function(event, state) {
update(state$app, "chosen",
content = paste("Selected:", toString(event$value)))
state
}
)
)
} # }
