AngularJS validation patterns, syntax and properties. Validation of forms, controls, models using various angular validation directives.
Questions tagged [angularjs-validation]
145 questions
3
votes
1 answer
Dynamic form validation in angularJS not working
I have created dynamic form, And adding the ng-required attributes dynamically to my controls. but now it's not working .
This is my JS :
var app = angular.module('birthdayToDo', []);
app.controller('main', function($scope){
…

user3715751
- 53
- 5
3
votes
1 answer
kendo ui, angular require validation for numeric text box
I am trying to use a kendo numeric text box with angular validation (ng-required) however I'm not able to get it working. The ng-required attribute on this element has no effect on the form validation status.
From my understanding, the reason why…

gjarzab
- 101
- 1
- 8
3
votes
2 answers
Form change and validity in angularjs
Whenever any non-readonly input in my form changes and the form is valid, I want to do certain action. Let's say, my form looks like

maaartinus
- 44,714
- 32
- 161
- 320
2
votes
0 answers
Custom validation in input field for unique value
I've to use AngularJS 1.7 for a project where I have a form and have to validate an input field to be required, to have a particular pattern and to have unique values. For this I'm doing this :
input#item-name(
name="name",
type="text",
…

pkdq
- 191
- 1
- 14
2
votes
2 answers
Angular JS form validation in "myApp" application.
I am new to AngularJS and try to implement form validation in "myApp" app.
I wrote the code below. The {{result}} should output "true"/"false". But it didn't work.