Hi
I am trying to limit a form field to a comma separated list of 8 digit numbers. I have the following field definition:
<input class="form-control"
cam-variable-name="billingAccount"
name="billingAccount"
ng-minlength="8"
maxlength="100"
ng-pattern="^\d{8}\s*(,\s*\d{8})*"
ng-model="billingAccount">
If I use this pattern in the Angular-JS web page that documents ng-pattern it works but if I use it in a Camunda form, the form never loads - it just displays “Loading…”
Does Camunda support all the angular directives? Why does this pattern not work inside a Camunda form?
Thanks.