You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Despite the documentation tagging VaSelect with 'combobox', it doesn't actuallly support combobox-like features. For example, there doesn't appear to be any way to replicate the function of a standard HTML combobox, such as:
<label for="combo">Choose or type an option:</label>
<input list="items" name="combo" id="combo" />
<datalist id="items">
<option value="Option 1" />
<option value="Option 2" />
<option value="Option 3" />
</datalist>
Describe the solution you'd like
Allow v-model to accept whatever is typed into the field, without having to use a @create-new function as described by W3.org
The text was updated successfully, but these errors were encountered:
Despite the documentation tagging VaSelect with 'combobox', it doesn't actuallly support combobox-like features. For example, there doesn't appear to be any way to replicate the function of a standard HTML combobox, such as:
Describe the solution you'd like
Allow v-model to accept whatever is typed into the field, without having to use a
@create-new
function as described by W3.orgThe text was updated successfully, but these errors were encountered: