-
Is there any widget or a way to autocomplete data from sql database. I have 10,000+ items in sql database. I want user to type few letter on press of Enter key display filtered list of item fro typed letters so user can select the appropriate item. |
Beta Was this translation helpful? Give feedback.
Answered by
kkoreilly
Oct 2, 2024
Replies: 1 comment 6 replies
-
You could fetch all the items and then use a |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could trying using an
Editable
Chooser
and then change theChooser.Items
inOnInput
based on the currentch.ChildByName("text-field").(*core.TextField).Text()
using your SQL query.