update_material_checkbox {shinymaterial}R Documentation

Change the value of a material_checkbox on the client

Description

Change the value of a material_checkbox on the client.

Usage

update_material_checkbox(session, input_id, value = NULL)

Arguments

session

The session object passed to function given to shinyServer.

input_id

The input_id of the material_checkbox.

value

Boolean. The value to set for the material_checkbox.

See Also

material_checkbox

Examples

## Not run: 
update_material_checkbox(
  session,
  input_id = "example_checkbox",
  value = TRUE
)

## End(Not run)

[Package shinymaterial version 1.2.0 Index]