Angularjs: How to include empty option in select when using ng-option

Serge Seletskyy picture Serge Seletskyy · Mar 27, 2013 · Viewed 29.7k times · Source

How can I add empty option in the beginning when I use ng-option to provide predefined list of options which doesn't include empty one?

An example in jade

select(ng-model="property.Value", ng-options="item.Value as item.Name for item in property.Choices")

Answer

Serge Seletskyy picture Serge Seletskyy · Mar 27, 2013

Just add an option with empty value inside of the select.

select(ng-model="property.Value", ng-options="item.Value as item.Name for item in property.Choices")
  option(value="")

Here's an example - http://jsfiddle.net/sseletskyy/uky9m/1/