N nemeola Member Licensed User Longtime User Nov 18, 2012 #1 I am going to be developing an app that will have a lot of lookups from data that will be in database that I will keep current. Is there a combo box lookup linked to database like in Visual Studio that can be used.
I am going to be developing an app that will have a lot of lookups from data that will be in database that I will keep current. Is there a combo box lookup linked to database like in Visual Studio that can be used.
Ricky D Well-Known Member Licensed User Longtime User Nov 18, 2012 #3 Spinner or AutoCompleteEditText. Depends if you want to type in and have items show as you type (the autocomplete does that) or click on the spinner and get a dropdown of items. regards, Ricky Upvote 0
Spinner or AutoCompleteEditText. Depends if you want to type in and have items show as you type (the autocomplete does that) or click on the spinner and get a dropdown of items. regards, Ricky
barx Well-Known Member Licensed User Longtime User Nov 18, 2012 #4 There has recently been released a data bound spinner library. http://www.b4x.com/forum/additional-libraries-classes-official-updates/23309-library-data-bound-spinner.html#post135166 Not tried it, but it may be worth a go. Upvote 0
There has recently been released a data bound spinner library. http://www.b4x.com/forum/additional-libraries-classes-official-updates/23309-library-data-bound-spinner.html#post135166 Not tried it, but it may be worth a go.
Erel B4X founder Staff member Licensed User Longtime User Nov 19, 2012 #5 Also check SearchView class. it is more powerful than AutoCompleteEditText. Upvote 0