update_bucket_list {sortable} | R Documentation |
Change the value of a bucket list.
Description
At the moment, you can only update the text
of the bucket_list
, not the
labels.
Usage
update_bucket_list(
css_id,
header = NULL,
session = shiny::getDefaultReactiveDomain()
)
Arguments
css_id |
This is the css id to use, and must be unique in your shiny
app. This defaults to the value of |
header |
Text that appears at the top of the bucket list. (This is
encoded as an HTML |
session |
The |
See Also
Examples
## Example of a shiny app that updates a bucket list and rank list
if (interactive()) {
app <- system.file(
"shiny-examples/update/app.R",
package = "sortable"
)
shiny::runApp(app)
}
[Package sortable version 0.5.0 Index]