angular-form-validation
v1.0.7
Published
AngularJS module to automate form validations
Downloads
4
Readme
angular-form-validation
Description
This advanced module for AngularJS provides you with facilities to automate form validation,
error display and input decorations. No more manual application of ngClass
directives
to all the form elements and creating error messages for every possible input.
Just install this module and provide input requirements the standard way by using native HTML5
attributes like maxlength
, required
and standard AngularJS directives like ngMin
, ngMax
and the like. No need to add directives to all the input fields.
You can configure this module to decorate forms as you see fit only once and all the forms of your application will automatically benefit from it.
Features
- Works out of the box with almost zero configuration
- No need to specify any additional directives besides standard input constraints
- Has built-in supports for Bootstrap 3, see the Using Bootstrap 3 section
- Automatically decorates valid, invalid and non-modified input fields
- Automatically adds error messages to invalid input fields
- Supports translations (i18n) and provides some built-in languages
- Designed with flexibility in mind, almost every aspect of this module can be configured and overridden (see the API section of this document)
- You can easily select DOM elements to decorate by providing custom traversing functions
- You can change the way forms are decorated by overriding some aspects of existing decorators or by providing your own implementation of them
- You can change the way error list is rendered by modifying default error list renderer or by providing your own implementation
- jQuery is not required since version
1.0.3
Demo
Feel free to play with the Demo.
Installation
Dependencies
This library requires angular-input-modified
module.
It is used to detect modified input fields.
Install library with bower
bower install --save angular-form-validation
Add library to your page
<script type="text/javascript" src="angular-form-validation/dist/angular-form-validation.js"></script>
Use minified version: angular-form-validation.min.js
in production
and uncompressed version: angular-form-validation.js
during development/testing.
Also, don't forget to add dependencies, see Dependencies section above.
Add dependency in your application's module definition
var application = angular.module('application', [
// ...
'ngFormValidation'
]);
Usage
This module is working out of the box with default settings and no configuration. However, in order to unleash it's full potential, you should provide additional configurations through exposed providers. Please see the API documentation in order to understand how to do this. It's written for real humans!
Important requirements
In order for this module to work, you must have semantically correct HTML form, i.e.
all your input
elements must be placed inside of a form
element.
Also, all your form
and input
elements must have a name
attributes with unique values.
Using Bootstrap 3
This module provides Bootstrap 3 support out of the box.
Just add the following code to your project:
module
// ...
.config([
'formValidationDecorationsProvider',
'formValidationErrorsProvider',
function(
formValidationDecorationsProvider,
formValidationErrorsProvider
) {
formValidationDecorationsProvider
.useBuiltInDecorator('bootstrap')
;
formValidationErrorsProvider
.useBuiltInErrorListRenderer('bootstrap')
;
}
])
// ...
;
And if you want to use fontawesome icon library instead of glyphicons (default):
formValidationDecorationsProvider
.useBuiltInDecorator('bootstrap')
.useIconLibrary('fontawesome')
;
API
See the detailed API documentation.
Forced validation
Since version 1.0.1
of this module, input elements are not decorated in any way if they are pristine.
To counter this behavior functionality called "forced validation" was introduced.
- Call
ngModel.forceValidation(true/false)
to enable/disable forced validation for this input element - Call
ngForm.forceValidation(true/false)
to set forced validation on all form elements
When forced validation is enabled for an input element it will be decorated even if it's pristine.
If you want to force validation on form as soon as controller is loaded, you should use the following trick:
.controller('DefaultController', function($scope, $timeout) {
// ...
$timeout(function () {
$scope.form.forceValidation(true);
}, 0);
})
Using $timeout
with zero interval makes sure, that our code is executed when
compilation is complete and $scope.form
is available.
Feedback
If you have found a bug or have another issue with the library - please create an issue in this GitHub repository.
If you have a question - file it with StackOverflow and send me a link to [email protected]. I will be glad to help. Also, please create a plunk to demonstrate the issue if appropriate. You can even fork our demo plunk.
Have any ideas or propositions? Feel free to contact me by E-Mail.
Cheers!
License
The MIT License (MIT)
Copyright (c) 2014 Slava Fomin II
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.