Is there any way, how user can input his own value to the aui:select component? I want the user to select an option from the drop-down list or add his own option.
Example:
<aui:select name="city" label="What city do you prefer?" id="selectedCity">
<aui:option value="Moskau" label="Moskau" />
<aui:option value="New York" label="New York"/>
<aui:option value="London" label="London"/>
<aui:option value="Berlin" label="Berlin" />
</aui:select>
This select creates a dropdown list with 4 cities, but I want to enable user to put there his own city.