You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
filter: function() {
//we check only control that have class enable-validation and are visible
return $(this).is(".enable-validation") && $(this).is(":visible");
}
I'm using filter function
Some text inputs are with "required" flag
When I remove "enable-validation" class from this input it still checked by jqBootstrapValidation engine even the filter should not return it.
If I remove required and use other validations items like regex it works well.
The text was updated successfully, but these errors were encountered: