I am currently working in Servicenow Service portal where it support Angular
I am able to create a Search box using bootstrap as shown below:
<select class="mdb-select md-form" searchable="Search here..">
<option value="" disabled selected>Choose your country</option>
<option value="1">USA</option>
<option value="2">Germany</option>
<option value="3">France</option>
<option value="3">Poland</option>
<option value="3">Japan</option>
</select>
This gives the correct result. But from the server I am pulling country names which I want set up dynamically upon every update the result may change. I am able to receive a country names as shown below in an array like: Thailand, China, India, Singapore.
How can I set above all the country names in the select box?