Bootstrap-select: How to create select without "Nothing selected" option?

Created on 2 Jun 2017  路  5Comments  路  Source: snapappointments/bootstrap-select

Most helpful comment

You can just add <option value=""> </option>
like
<select class='selectpicker form-control'>
<option value=""> </option>
<option value="1"> Number 1</option>
<option value="2"> Number 2</option>
</select>

All 5 comments

How to solve the issue pls any help me

noneSelectedText: ''

OK then without multiple select?

You can just add <option value=""> </option>
like
<select class='selectpicker form-control'>
<option value=""> </option>
<option value="1"> Number 1</option>
<option value="2"> Number 2</option>
</select>

Was this page helpful?
0 / 5 - 0 ratings

Related issues

bhritch picture bhritch  路  3Comments

EmilMoe picture EmilMoe  路  4Comments

didip picture didip  路  4Comments

alex-piccione picture alex-piccione  路  4Comments

DjSunrise picture DjSunrise  路  3Comments