The reason the default option doesn't work is because in your controller, you probably initialized your form model as follows:
$scope.newSpesaAereo = {}
If you want to set the default form parameters, you must also set them in the form model. For example, set 'valuta' to 'Euro' as follows:
$scope.newSpesaAereo = { valuta: "Euro" }
Hope this helps!
PS When posting such questions, you must also include the controller code that the view is associated with.
source share