I am using ng-model to link input values with model.
If I set default value in input box it does not show in $scope, but If I change anything in this input I can see changes.
<input type='text' id="save_quote_email" name="save_quote_email" ng-model="AutoQuote.postAutoQuoteObj.ApplicationInfo.GeneralPartyInfo.ContactInfo.Emails[0].EmailAddress" value="[email protected]" />
{{AutoQuote.postAutoQuoteObj.ApplicationInfo.GeneralPartyInfo.ContactInfo.Emails[0].EmailAddress}}
I can set this value in controller, then it will work, but such values will come in form when my html loaded.
ng-initshould work