Files
wtforms-parsleyjs/static/scripts/parsley-noneof.js
T
2016-01-24 07:18:45 +08:00

6 lines
244 B
JavaScript

$(document).ready(function() {
window.ParsleyValidator.addValidator('noneof', function (value, array) {
return array.indexOf(value) === -1;
}, 32).addMessage('en', 'noneof', 'You have entered a value which is not allowed.')
});