Is there a dopdown that is editable so that users can type in and the list will show up and narrow down the list to match user’s entry, perhaps a textinput with dropdown feature.
If that is not available yet, then can someone help do the following.
I want user to enter an input and his/her input should be checked in our database. If the input is not present in our database, then we want to show only a warning in a text field and users can either check his entry for mistakes or he can continue if he wants to.
If his entry is available in our database, then I want other text fields to be updated with data from the database.
Let’s say user enters into ‘textinput1’, we check his entry in our database called ‘database1’ at field key ‘field1’. If entry not found in the db then we show a warning in a ‘textfield1’. If entry is found in the db then we will update ‘textfield2’ and ‘textfield3’ with data from ‘database1’ at field key ‘field2’ and ‘field3’ respectively.
Note: Database where user input will be verified and data will be fetched from to update the text fields are same.