I have model that looks like this:
$scope.item = {
userId: 2,
bioValues: [{
name: 'Systolic',
biometricValue: 120
}, {
name: 'Diastolic',
biometricValue: 80
}]
};
My form names are "bioValues[0].biometricValue, bioValues1.biometricValue".
But when I try and validate my form, 'ng-show' on my field validation errors isn't triggered. I have looked at the form object in firebug and all of my applicable form errors are correctly marked as invalid when empty but ng-show isn't triggered.
Here is a plunker. Try leaving one of the inputs empty. The required error is not triggered on ng-show.
Any ideas? Thanks.