Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between `select` and `combobox` in vuetify

Tags:

vuetify.js

In the vuetify documentation you can see two similar controls i.e select and combobox. They both are providing same functionality I guess. What is the difference between these two?

Combobox

Select

Thanks

like image 672
Anoop Thiruonam Avatar asked Jul 12 '18 13:07

Anoop Thiruonam


People also ask

What is a combobox component?

The v-combobox component is a v-autocomplete that allows the user to enter values that do not exist within the provided items. Created items will be returned as strings.


2 Answers

From the documentation:

Select:

Select fields components are used for collecting user provided information from a list of options.

Combobox:

With combobox you can allow a user to create new values that may not be present in a provided items list.

They could be merged? If there is no deep physical or technical difference between the two, I think it is considerable -like adding a boolean editable attribute or so.

like image 90
vahdet Avatar answered Sep 27 '22 19:09

vahdet


Combobox allow user to create new values, that doesn't exist in list. Select don't have such ability.

like image 25
Aldarund Avatar answered Sep 27 '22 19:09

Aldarund