bootstrap-validator
bootstrap-validator copied to clipboard
A user-friendly HTML5 form validation jQuery plugin for Bootstrap 3
Hello! Following is my code snippet for adding couple of fields dynamically. I have also added .validator('update'). But it isn't working. $("#button1Id").click(function(){ $("#divInsideFormId").append('filed1-selectoption, field2-datepicker, field3-textbox'); $("#formId").validator('update'); }); I even tried...
In line 258 at clearErrors It throws this error on two radio-buttons which trigger to show/hide elements in the form. I debugged validator.js several hours but did not see any...
I've read the plugin uses trim, but for some reason it doesn't work for me. E.g. `name` field with the value of just couple of spaces doesn't show any errors,...
Custom functions do not support hump naming when using custom validation? my right custom function like as ```javascript custom: { selectcheck: function ($el) { // var matchValue = $el.data("selectcheck"); var...
If first input is select-object focus of form is not possible unless form is at top of page... var $input = this.$element.find(".has-error:first :input"); changing :input to :select helps...but kills generic...
There's a gazillion open issues and pull requests and no commits to master for 6 months.. any chance of anything getting resolved? (There's also nearly 1000 forks, which is ludicrous,...
I'm using Bootstrap 4 alpha. When I have something like the following, it works fine: ```html Password Minimum of 6 characters ``` But when I move the `input` into a...
[this defer](/1000hz/bootstrap-validator/blob/98654674893740666773ebfb62798a2611e1a7cc/dist/validator.js#L200) gets never redefined therefore stays resolved forever. I've been using forks of this module, but since npm has this stupid policy regarding updating modules from git sources I...
The validator works in terms of detecting errors as data is entered into a form, but the form is still submitted when I click the Submit button even if there...
It is not possible to determine when the form was fully validated. This simple patch manage to trigger an event after all fields are validated. fix #69 and closes #116