I dynamically create inputs and want also validate every one of them but can't set correctly the ng-messages
attribute to the field name property which is dynamically generated.
<input ng-model="sub.name" name="subName{{$index}}" class="form-control" placeholder="name" required maxlength="20" />
<div class="field-error" ng-messages="form.subName{{$index}}.$error" ng-show="form.Name.$touched" role="alert">
<div ng-message="required">Name is required.</div>
</div>
I got problem with second line where I set the ng-messages
dynamically to ng-messages
. How can I do this?