Search code examples
pythonsearchwxpythonsuggestbox

A SuggestBox for wxPython?


Is there a widget for wxPython like the SuggestBox in Google Web Toolkit? It is basically a magic text box that can invoke some code to come up with suggestions relevant to whatever the user has entered so far. Like the search box on Google's web page.

If such a widget isn't already floating out there, I'd appreciate a sketch of how I might implement it with the existing widgets.


Solution

  • You might want to look at Combo Box that Suggests Options.

    I hope this is what you were thinking of.