| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- (function($) {
- $.fn.bootstrapValidator.validators.stringLength = {
- html5Attributes: {
- message: 'message',
- min: 'min',
- max: 'max'
- },
- enableByHtml5: function($field) {
- var maxLength = $field.attr('maxlength');
- if (maxLength) {
- return {
- max: parseInt(maxLength, 10)
- };
- }
- return false;
- },
- /**
- * Check if the length of element value is less or more than given number
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of following keys:
- * - min
- * - max
- * At least one of two keys is required
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- var length = $.trim(value).length;
- if ((options.min && length < options.min) || (options.max && length > options.max)) {
- return false;
- }
- return true;
- }
- };
- }(window.jQuery));
|