| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- (function($) {
- $.fn.bootstrapValidator.validators.greaterThan = {
- html5Attributes: {
- message: 'message',
- value: 'value',
- inclusive: 'inclusive'
- },
- enableByHtml5: function($field) {
- var min = $field.attr('min');
- if (min) {
- return {
- value: min
- };
- }
- return false;
- },
- /**
- * Return true if the input value is greater than or equals to given number
- *
- * @param {BootstrapValidator} validator Validate plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - value: The number used to compare to
- * - inclusive [optional]: Can be true or false. Default is true
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- value = parseFloat(value);
- return (options.inclusive === true || options.inclusive==undefined) ? (value >= options.value) : (value > options.value);
- }
- }
- }(window.jQuery));
|