Selectize (Multiple)
#| standalone: true
#| components: [viewer]
#| viewerHeight: 200
from shiny import App, render, ui
app_ui = ui.page_fluid(
ui.input_selectize(
"selectize",
"Select options below:",
{"1A": "Choice 1A", "1B": "Choice 1B", "1C": "Choice 1C"},
multiple=True,
),
ui.output_text("value"),
)
def server(input, output, session):
@render.text
def value():
return f"{input.selectize()}"
app = App(app_ui, server)
from shiny import App, render, ui
app_ui = ui.page_fluid(
ui.input_selectize(
"selectize",
"Select options below:",
{"1A": "Choice 1A", "1B": "Choice 1B", "1C": "Choice 1C"},
multiple=True,
),
ui.output_text("value"),
)
def server(input, output, session):
@render.text
def value():
return f"{input.selectize()}"
app = App(app_ui, server)
Relevant Functions
-
ui.input_selectize
ui.input_selectize(id, label, choices, *, selected=None, multiple=False, width=None)
Details
A selectize list creates a way to select one or more items from a list.
To use a selectize list that allows you to select multiple items:
Add
ui.input_selectize()
to the UI of your app to create a selectize list. Where you call this function will determine where the selectize list appears within the app’s layout.Specify the
id
andlabel
parameters ofui.input_selectize()
to define the identifier and label of the select list.Supply the
choices
parameter with either a list or dictionary of choices. Ifchoices
is a list, its elements become the select list values and labels. Ifchoices
is a dictionary,ui.input_selectize()
uses the dictionary keys as the list values and the dictionary values as the list labels.
You can also supply with choices
a dictionary of dictionaries. ui.input_selectize()
will use the top-level keys as group labels. See Selectize with grouped choices variation.
- The
multiple
parameter controls whether you can select multiple items at once. Setmultiple=True
to allow the user to select multiple values.
The value of an input component is accessible as a reactive value within the server()
function. To access the value of a selectize list:
- Use
input.<selectize_id>()
(e.g.,input.selectize()
) to access the selected value(s). The server value of a selectize list is a list of strings.
See also: Selectize (Single) and Select (Multiple). Select inputs and selectize inputs are similar, but have different interfaces and provide different ways of selecting multiple options. Selectize inputs also allow you to deselect items.
Variations
Selectize with grouped choices
To group the choices into categories, supply the choices
argument with a dictionary of dictionaries. ui.input_selectize()
will use the top-level keys as group labels.
#| standalone: true
#| components: [viewer]
#| viewerHeight: 300
from shiny import App, render, ui
app_ui = ui.page_fluid(
ui.input_selectize(
"selectize",
"Select options below:",
{
"1": {"1A": "Choice 1A", "1B": "Choice 1B", "1C": "Choice 1C"},
"2": {"2A": "Choice 2A", "2B": "Choice 2B", "2C": "Choice 2C"},
},
multiple=True,
),
ui.output_text("value"),
)
def server(input, output, session):
@render.text
def value():
return f"{input.selectize()}"
app = App(app_ui, server)
from shiny import render
from shiny.express import input, ui
ui.input_selectize(
"selectize",
"Select options below:",
{
"1": {"1A": "Choice 1A", "1B": "Choice 1B", "1C": "Choice 1C"},
"2": {"2A": "Choice 2A", "2B": "Choice 2B", "2C": "Choice 2C"},
},
multiple=True,
)
@render.text
def value():
return f"{input.selectize()}"
from shiny import App, render, ui
app_ui = ui.page_fluid(
ui.input_selectize(
"selectize",
"Select options below:",
{
"1": {"1A": "Choice 1A", "1B": "Choice 1B", "1C": "Choice 1C"},
"2": {"2A": "Choice 2A", "2B": "Choice 2B", "2C": "Choice 2C"},
},
multiple=True,
),
ui.output_text("value"),
)
def server(input, output, session):
@render.text
def value():
return f"{input.selectize()}"
app = App(app_ui, server)