Angularjs: How to include empty option in select when using ng-option
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")
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/
just modify the property.choices array in angular.
$scope.property.Choices.splice(0, 0, {“id”:”0″,”Name”:”Richard”});
This just worked for me by modifying the object
angular.extend({‘Please Select’ : ”},objectName)
The answers/resolutions are collected from stackoverflow, are licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0 .