A SuggestBox for wxPython?

287 Views Asked by At

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.

2

There are 2 best solutions below

1
On BEST ANSWER

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

I hope this is what you were thinking of.

0
On

Few years ago I made a control like this by subclassing TextCtrl. It supports HTML formating for suggestions. Here you go.