Using an AutocompleteInput widget, is it possible to allow the auto completion to work for any word?
I've seen a few people struggling with this issue from about five years ago but I've not seen any solutions.
Many thanks.
Using an AutocompleteInput widget, is it possible to allow the auto completion to work for any word?
I've seen a few people struggling with this issue from about five years ago but I've not seen any solutions.
Many thanks.
The AutocompleteInput takes a list for the parameter completions. Only items of this list can be completed. If you want to allow other words, which are not in the list, you have to set restrict=False.
This is all bokeh offers you. Unkown words can't be completed.