I have the following in a jade file
....
input(id='prefChangeY', type='radio', ng-value='Yes', ng-model='form.prefChange', name='prefChange', on-focus="fieldInfo='Select yes to change your pref'")
.....
input(id='prefChangeN', type='radio', ng-value='No', ng-model='form.prefChange', name='prefChange', on-focus="fieldInfo='Select no to change your pref'")
.....
In the controller I have the following code
$scope.form.prefChange = 'No';
Unfortunately, I am unable to get the No radio button to be selected by default.
Any assistance will be much appreciated.
Melroy