I have a SQL database table with columns as follows:
Row1 Row2 Row3 Id Country
1 1a 1b 34 Europe
2 2a 2b 45 US
3 3a 4d 5g Australia
I am currently working on implementing an autocomplete feature in the front end using AngularJS.
Here is a Plunker example demonstrating autocomplete functionality.
When a user types in the input field, it should automatically suggest various options based on values from Row1, Row2, and Row3.
For example, if a user types '1', the autocomplete should suggest '1a' and '1b'.
The backend is in C#. Exposing the database column values of Row1, Row2, and Row3 to the front end is not an issue.
Could someone provide guidance on how to implement this UI feature?