We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
##Options
##Methods
##Important to know
data-settings='{alwaysvisible : true}'
alwaysvisible
useManualInputAsFilter=true
##jQuery Validate usage If you want to validate it with jQuery validate you can add the following rule to the validation:
jQuery.validator.addMethod("fancyformSelect", function(value, element, param) { $(element).nextAll("ul:first")[element.selectedIndex ? "removeClass" : "addClass"]("error"); return element.selectedIndex; });
And use it like:
$("form").validate({ rules : { customSelect : "fancyformSelect" } });