I\'m new to angular and i\'m trying to set a default state to select when my ng-model is null. Basically I want to set it to \'None\' if the model is empty. I tried the below co
Often happens that your ng-model="item.carType"
doesn't match any of the select option keys because of the wrong case.
For example: item.cartType
is "Manual"
but in the options you have an option in this case it won't work and in the console output you'll see something like this:
So, either correct your data model or your select option value: