Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
holoviz
GitHub Repository: holoviz/panel
Path: blob/main/examples/reference/widgets/Checkbox.ipynb
2011 views
Kernel: Unknown Kernel
import panel as pn pn.extension()

The Checkbox widget allows toggling a single condition between True/False states by ticking a checkbox. The Checkbox widget allows toggling a single condition between True/False states by ticking a checkbox. The Checkbox, Toggle, and Switch widgets are interchangeable.

Discover more on using widgets to add interactivity to your applications in the how-to guides on interactivity. Alternatively, learn how to set up callbacks and (JS-)links between parameters or how to use them as part of declarative UIs with Param.

Parameters:

For details on other options for customizing the component see the layout and styling how-to guides.

Core
  • value (boolean): Whether the checkbox is checked or not

Display
  • disabled (boolean): Whether the widget is editable

  • name (str): The title of the widget


checkbox = pn.widgets.Checkbox(name='Checkbox') checkbox

Checkbox.value parameter is either True or False depending on whether the checkbox is ticked.

checkbox.value

Controls

The Checkbox widget exposes a number of options which can be changed from both Python and Javascript. Try out the effect of these parameters interactively:

pn.Row(checkbox.controls(jslink=True), checkbox)