-7
I have a select:
<select multiple="multiple">
<option value="0">teste</option>
<option value="1">teste 1</option>
<option value="2">teste 2</option>
<option value="3">teste 3</option>
<option value="4">teste 4</option>
<option value="5">teste 5</option>
</select>
In this select I would like to be able to select only 1 item from the list, but I want to appear all items in list format, so the use of Multiple, how could solve this?
Note: I won’t be able to use the property size
because the list size is dynamic, the list comes from the back-end.
i gave an example when putting 6 items in select, I will not be able to use the size because the list size is dynamic, the list comes from the back end.
– Stand Alone
@Stand Alone, if that was also what you want, then you had to have put that in the question too.
– user170164
Ok I’ll edit adding this thanks.
– Stand Alone