Is there any difference between drop down box and combo box [ HTML ]?
Actually the point is, everytime i say something like: "there is some problem with the combo box", my senior says: "that's not a combo box that is a drop down", :)
Is there any difference between drop down box and combo box [ HTML ]?
Actually the point is, everytime i say something like: "there is some problem with the combo box", my senior says: "that's not a combo box that is a drop down", :)
Technically, there are no combo boxes in HTML, because the
<SELECT>
can't be typed into. See the Wikipedia article on Combo Box (emphasis mine):While the definition of drop-down list matches exactly what the HTML
<SELECT>
element does:So your senior is right.
I guess he is getting at the fact
A combo box should have more than one item on a predefined list always visible to the user and should either:
enable users to select a single item from the predefined list and/or type their own value;
or
enable users to select multiple items from a displayed predefined list and/or add their own value
A drop-down/drop-list box should only display and enable users to select one item from a predefined list.
The combobox allows the user to pick a value from a predefined set or input a custom one. The dropdownlist only allows picking one of the predefined values.