Is there any way to set placeholder with search-enabled="false"? #241
Description
This is my code:
<ui-select ng-model="data.selectEstablec" theme="selectize" search-enabled="false" style="width: 95%;">
<ui-select-match placeholder="Establecimiento...">{{$select.selected.nombre}}</ui-select-match>
<ui-select-choices repeat="est in establecimientos" value="{{est.id}}">{{est.nombre}}</ui-select-choices>
</ui-select>
When search is enabled, placeholder shows fine.
I tested this also:
<ui-select ng-model="data.selectEstablec" theme="selectize" search-enabled="false" data-placeholder="Establecimiento..." style="width: 95%;">
<ui-select-match>{{$select.selected.nombre}}</ui-select-match>
<ui-select-choices repeat="est in establecimientos" value="{{est.id}}">{{est.nombre}}</ui-select-choices>
</ui-select>
But placeholder is missing.