This AngularJS module adds additional properties and methods to the ngModel
and ngForm
controllers
as well as CSS classes to the underlying form elements
to provide end-user with facilities to detect and indicate changes in form data.
This extra functionality allows you to provide better usability for forms. For example, you can add decorations to the form elements that are actually changed. That way, user will see what values has changed since last edit.
Also, you can reset form to it's initial state (cancel all user edits) with just a single call to form.reset()
or
lock new values (preserve new state) just by calling augmented form.$setPristine()
method.
If you want, you can do this for individual input elements the same way.
Please see /demos
directory or visit our GitHub Pages.
This module adds ng-modified
and ng-not-modified
CSS classes (names are customizable) to the input fields to indicate their state.
Use them in your CSS to decorate input fields. You can combine multiple classes in the same selector.
For example, use this convenient CSS selector to decorate modified elements as valid:
/** Decorating only modified inputs as valid */
input.ng-valid.ng-modified {
border-color: green;
}
This way target user will see what elements were actually changed.
This module also supports animations if ngAnimate
module is available.
bower install --save angular-input-modified
<script type="text/javascript" src="angular-input-modified/src/angular-input-modified.js"></script>
You can use minified version (angular-input-modified.min.js
) in production.
var application = angular.module('application', [
// ...
'ngInputModified'
]);
Please see our demos and examples as well as API.
Use this provider to configure behavior of this module. Every setter of this provider supports methods chaining. See example:
angular.module('Application', ['ngInputModified'])
.config(function(inputModifiedConfigProvider) {
inputModifiedConfigProvider
.disableGlobally()
.setModifiedClassName('my-changed')
.setNotModifiedClassName('my-clear')
;
})
;
{ConfigProvider} enableGlobally()
Enables modifiable behavior globally for all form elements (this is default).
{ConfigProvider} disableGlobally()
Disables modifiable behavior globally for all form elements. You will have to add this behavior manually by using bsModifiable directive
{ConfigProvider} setModifiedClassName({string} className)
Provides CSS class name that will be added to modified elements.
ng-modified
is the default one.
{ConfigProvider} setNotModifiedClassName({string} className)
Provides CSS class name that will be added to unmodified elements.
ng-not-modified
is the default one.
Model controller properties and methods:
PROPERTIES:
==========
* masterValue - initial value of the input field.
boolean modified - flag that indicates whether the input value was modified.
METHODS:
=======
void reset() - resets input value to it's initial state.
Form controller properties and methods:
PROPERTIES:
==========
integer modifiedCount - number of modified input types inside of the form.
boolean modified - flag that indicates whether the form is modified (i.e. at least one element is modified).
string[] modifiedModels - list of names for modified models.
METHODS:
=======
void reset() - method to reset all input values of the form to their initial states.
Please see our changelog.
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 the same E-Mail address.
Cheers!
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.