Replies: 2 comments
-
DetailedList currently looks like a table on Windows, but that may change in the future. So if you want it to look like a table, you should use the Table widget instead. Table already has an Meanwhile, you can already respond to a single click with the
Widgets can be added to and removed from the window at any time using the methods of the WIdget base class. |
Beta Was this translation helpful? Give feedback.
-
thank you. (on a side note: |
Beta Was this translation helpful? Give feedback.
-
I'm using autocomplete in many forms/apps. It saves browsing time, typos, and extra clicks.
Let's explore the options;
What I did (see screenshot)
A TextInput on top,
a DetailedList directly below.
TextInput.on_change() --> delete existing list items, creates a filtered list, according to the text.
TextInput.on_confirm() --> to capture the first item on the list.
It works.
but there are UI/UX issues I want to fix:
Is there a solution to either points?
Beta Was this translation helpful? Give feedback.
All reactions