angular-bootstrap-show-errors
angular-bootstrap-show-errors copied to clipboard
An Angular directive for Bootstrap to intelligently show form validation errors
there may be number of cases when this is not possible due to form markup. One possible solution is to use `*[name]` instead `.form-control['name']` seems it breaks only one spec...
Any examples on to use with an async validation function?
The following example is given in the section "Force Validity Check": ``` html ``` This does not set the `required` attribute for current versions of Angular. `ng-required` should be replaced...
Is possible to show a validation message together with the `error` css class?
The attached pull request turns the boolean `blurred` into a map `blurred[inputName]`. After a change / blur event the `isValid` and the `isBlurred` helper functions check if all elements are...
This event can be listened on by directives inside the show-errors directive in order to e.g. show/hide a feedback icon or other error messages. Example: ``` js angular.module('app') .directive('feedbackIcon', function...
First of all: tnx for the plugin, it works really nice :) It might as well be me doing something wrong but if I validate the form before any input...