-
Client side validations are generated in the HTML, however, the user can tab through the fields requiring validation without the alert CSS firing.
_the header data is identical to cases where CSV is …
-
### Steps to reproduce*
Click on the checkbox to check it, then uncheck it.
NOTE: Other client-side validations work correctly on this form. I would suspect this is to do with the way I've done …
-
### Steps to reproduce
The client side validations are initialized on initial page load but not on Turbolinks navigation. For example, using the Rails example below if you navigate through to the `hi…
-
### Steps to reproduce*
call isValid on form
$input = $('#myInputField');
$form = $input.closest('form');
validators = $form[0].ClientSideValidations.settings.validators;
$form.isValid(v…
-
Hello
I need to add custom validator for comparing two dates - start date and end date.
I created custom validator
``` ruby
class MilestoneDatesValidator < ActiveModel::EachValidator
def validate_e…
-
Follow up: #738
-
First of all thanks for this awesome gem. Let me clarify that this is not an issue but a question.
I don't understand much about changing the error message and I hope someone can help me. I just wa…
-
Using Rails 5.2, and Bootstrap 4.3.1 (and no gems like simple form etc).
`input-group-append` `input-group-prepend` are not working properly.
How can we change the initializer settings so this w…
-
Rails 5.2.2
Ruby 2.6
cient_side_vlidations gem version 13.1.0
I did:
rails g client_side_validations:install
I uncommented the following, in config/initializers/client_side_…
-
If for example I have the following form where I want to validate all fields apart from one. I set `validate: true` on `form_for` and then `validate: false` for the field I wish to ignore.
```
…