[ad_1]
I have a long list of options that I would like to show in a Combobox style, using ipywidgets.
However, I would like that, as I start typing the text, only x (eg. 10) options are displayed. So far I have:
pos_input = widgets.Combobox(placeholder="Type something", options=my_list, description='Position:', ensure_option=True)
And I don’t know what spec to add to restrict the visible options.
[ad_2]