angular-bootstrap-show-errors
angular-bootstrap-show-errors copied to clipboard
An Angular directive for Bootstrap to intelligently show form validation errors
Hi, very useful directive. But is there something planned (or an already existing approach) to easily support nested form validation? I know that doing it with a separate scope, like...
1) The current README file does not mention using a `form-control` class on the target field, but when not used, script throws error: `show-errors element has no child input elements...
I tried using the fix from #16, but unfortunately it doesn't work for me. What I have is something that looks like: ``` html ``` This results in the error:...
I'm getting the following errors after inserting into the script on my index page and module in application. Script: Module: var MetronicApp = angular.module('MetronicApp', ['MetronicApp.constants', 'MetronicApp.directives', 'MetronicApp.controllers', 'MetronicApp.services', 'ui.bootstrap', 'ui.router',...
Would it be possible to support placing `show-errors` directive directly on form so that one doesn't need to repeat it on every `form-group` in form?
First, thank you very much for this great directive! I try to use this with ui-select (https://github.com/angular-ui/ui-select). But I think there are conflicts and I'm not shure how to get...
Given a form which has one label but multiple input elements per row: ``` zip/city [____] [_______] ``` Unfortunately angular-bootstrap-show-errors validates only the first input element. Could you add an...
I have a `Settings` page with two subsections: `General Settings` and `Password Change` — two separate `` tags with the `Submit` button each. When I press Submit button on any...
My controller function: `$scope.save = function() { $scope.$broadcast('show-errors-check-validity'); ``` if ($scope.hotelForm.$valid) { // save the user } }` ``` Form element ` Name Save ``` ` ```
Can I use show-errors with angular material ? I do not want to use bootstrap !