bokeh.models.widgets.inputs¶
Various kinds of input widgets and form controls.
-
class
AutocompleteInput
(**kwargs)[source]¶ Bases:
bokeh.models.widgets.inputs.TextInput
Single-line input widget with auto-completion.
-
class
DatePicker
(**kwargs)[source]¶ Bases:
bokeh.models.widgets.inputs.InputWidget
Calendar-based date picker widget.
-
class
InputWidget
(**kwargs)[source]¶ Bases:
bokeh.models.widgets.widget.Widget
Abstract base class for input widgets.
Note
This is an abstract base class used to help organize the hierarchy of Bokeh model types. It is not useful to instantiate on its own.
-
class
MultiSelect
(**kwargs)[source]¶ Bases:
bokeh.models.widgets.inputs.InputWidget
Multi-select widget.
-
callback
¶ property type:
Instance
(Callback
)A callback to run in the browser whenever the current selection value changes.
-
options
¶ property type:
List
(Either
(String
,Tuple
(String
,String
) ) )Available selection options. Options may be provided either as a list of possible string values, or as a list of tuples, each of the form
(value, label)
. In the latter case, the visible widget text for each value will be corresponding given label.
-
-
class
PasswordInput
(**kwargs)[source]¶ Bases:
bokeh.models.widgets.inputs.TextInput
Single-line password input widget. Note: Despite PasswordInput inheriting from TextInput the password cannot be inspected on the field
value
. Also, note that this field functionally just hides the input on the browser, transmiting safely a password as a callback, e.g., to the a bokeh server would require some secure connection.
-
class
Select
(**kwargs)[source]¶ Bases:
bokeh.models.widgets.inputs.InputWidget
Single-select widget.
-
callback
¶ property type:
Instance
(Callback
)A callback to run in the browser whenever the current Select dropdown value changes.
-
options
¶ property type:
Either
(List
(Either
(String
,Tuple
(Either
(Int
,String
),String
) ) ),Dict
(String
,List
(Either
(String
,Tuple
(Either
(Int
,String
),String
) ) ) ) )Available selection options. Options may be provided either as a list of possible string values, or as a list of tuples, each of the form
(value, label)
. In the latter case, the visible widget text for each value will be corresponding given label. Option groupings can be provided by supplying a dictionary object whose values are in the aforementioned list format
-