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
Is it possible to use DropKick with form validation. See the form on my website where I have two select elements. Without using dropkick they would normally get validated. I am using jqueryvalidation to do my validation.
The text was updated successfully, but these errors were encountered:
By default, Dropkick hides original select elements with display: none. There's an option for .validate() called ignore which defaults to ":hidden". This means that it is ignoring the original select elements, and since Dropkick isn't a normal form control, no validation is being performed on them.
I also added tinymce to my textarea form field. It hides the original textarea form field so, you need to include textarea.tinymce in the same do not ignore option.
Is it possible to use DropKick with form validation. See the form on my website where I have two select elements. Without using dropkick they would normally get validated. I am using jqueryvalidation to do my validation.
The text was updated successfully, but these errors were encountered: