Hi Daniel,
actually it worked with the radion buttons, when i made both input-fields required.
Markup:
<!-- Gender -->
<div class="control-group">
<label class="radio inline">
<input form-field type="radio" name="gender" value="m" required>
Mr.
</label>
<label class="radio inline">
<input form-field type="radio" name="gender" value="w" required>
Mrs.
</label>
<p ng-if="variablesForm.gender.$invalid" style="color: red">
Please select gender.
</p>
</div>
What i can´t get to work now is, showing different messages depending on the selected value ("m" or "w"). There i will try the select box you proposed.
The other thing i´m trying merely out of curiosity is, to make something like this work:
<input form-field type="text" name="test" ng-model="test" required>
<p> You typed {{test}} </p>
Up until now, my form does not longer show "{{test}}" but it doesn´t show the actual value. Sorry if the solution to this is obvious, im really a angluar newbie - and the more i play with it i´m starting to think i´m more of a jsf guy ;)
Thanks so far
Wolfgang