Add docs for select with no search

This commit is contained in:
Samuel Georges 2015-12-27 14:40:04 +11:00
parent 7d9d2176ef
commit 23e03aa404
1 changed files with 13 additions and 0 deletions

View File

@ -30,3 +30,16 @@ Custom select control.
<option value="2" selected="selected">Two</option>
</select>
</div>
## Options
### Disable search
Add the `select-no-search` CSS class to disable searching.
<div class="form-group">
<select class="form-control custom-select select-no-search">
<option value="1" selected="selected">One</option>
<option value="2" selected="selected">Two</option>
</select>
</div>