Shiny for python: how selectize works?

Hello everyone, I'm creating an application on Shiny for python and, I don't know why, but the selectize input is exactly the same than the classical select input. There is no text input to select or unselect what I want in the choices list. My code looks like:

ui.input_selectize(
    name,
    "Select:",
    choices=list(df[column].unique()) + ["All"],
    selected="All",
    multiple=True,
)

Thanks all!

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.