We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a developer, when I define my form schema, I should be able to display remaning field with "*".
For example with that form definition :
vm.form = [ { "key" : "name", validationMessage: { "nameContainsSpaces": "The name contains spaces" }, $validators : { nameContainsSpaces: function (value) { return !(angular.isString(value) && value.indexOf(' ') > 0); } } }, '*', { type : "submit", title: "Save" } ];
My form must display name field with custom validators, and other field not explicit declared.
Currently name field is displayed twice.
The text was updated successfully, but these errors were encountered:
See #748 this is in the alpha version already using the key "..."
Sorry, something went wrong.
No branches or pull requests
Features
As a developer, when I define my form schema, I should be able to display remaning field with "*".
Expected behaviour
For example with that form definition :
My form must display name field with custom validators, and other field not explicit declared.
Actual behaviour
Currently name field is displayed twice.
The text was updated successfully, but these errors were encountered: