| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- (function($) {
- $.fn.bootstrapValidator.i18n.different = $.extend($.fn.bootstrapValidator.i18n.different || {}, {
- 'default': 'Please enter a different value'
- });
- $.fn.bootstrapValidator.validators.different = {
- html5Attributes: {
- message: 'message',
- field: 'field'
- },
- /**
- * Return true if the input value is different with given field's value
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of the following key:
- * - field: The name of field that will be used to compare with current one
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value === '') {
- return true;
- }
- var fields = options.field.split(','),
- isValid = true;
- for (var i = 0; i < fields.length; i++) {
- var compareWith = validator.getFieldElements(fields[i]);
- if (compareWith == null || compareWith.length === 0) {
- continue;
- }
- if (value === compareWith.val()) {
- isValid = false;
- } else {
- validator.updateStatus(fields[i], validator.STATUS_VALID, 'different');
- }
- }
- return isValid;
- }
- };
- }(window.jQuery));
|