Added validate not function to ensure an input is not a value. The notify function now scrolls the element into view automatically.
This commit is contained in:
parent
05d6a37152
commit
49beb6c87e
@ -22,6 +22,8 @@ function notify(target, type, msg, duration) {
|
|||||||
color = "#10c469";
|
color = "#10c469";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
target.scrollIntoView({ behavior: "smooth" });
|
||||||
|
|
||||||
if (target._validation && target._validation.isConnected) {
|
if (target._validation && target._validation.isConnected) {
|
||||||
target._validation.remove();
|
target._validation.remove();
|
||||||
}
|
}
|
||||||
@ -263,6 +265,20 @@ IgniteTemplate.prototype.validateMax = function (max, msg) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates an input to make sure it it's value is not the given value.
|
||||||
|
* @param {Any} expected The value the input cannot have in order to be considered valid.
|
||||||
|
* @param {string|Function|IgniteProperty} msg The message to display when the input length is too long. If null a deafult one will show.
|
||||||
|
* @returns {IgniteTemplate} This ignite template.
|
||||||
|
*/
|
||||||
|
IgniteTemplate.prototype.validateNot = function(expected, msg) {
|
||||||
|
return this.validate((value, error) => {
|
||||||
|
if (!value || value == expected) {
|
||||||
|
return error(msg ? msg : `Input cannot be ${expected}.`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validates an input to make sure it includes a string.
|
* Validates an input to make sure it includes a string.
|
||||||
* @param {string} str The string that the input must include.
|
* @param {string} str The string that the input must include.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user