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!