Added placeholderValue to numbers function to control the value of the placeholder.

This commit is contained in:
MattMo 2024-01-10 07:06:59 -08:00
parent 83ef4cae9e
commit e924b55135

View File

@ -514,15 +514,16 @@ IgniteTemplate.prototype.countries = function(placeholder = null) {
* @param {Number} from The starting number. * @param {Number} from The starting number.
* @param {Number} to The ending number. * @param {Number} to The ending number.
* @param {String} placeholder The placeholder option if set, it's value will be -1, this will be the text displayed. * @param {String} placeholder The placeholder option if set, it's value will be -1, this will be the text displayed.
* @param {Number} placeholderValue The value of the placeholder option if the placeholder is set. Default is -1.
* @param {Boolean} descending Whether or not the from number if first and the to number is last. * @param {Boolean} descending Whether or not the from number if first and the to number is last.
* @returns {IgniteTemplate} This ignite template. * @returns {IgniteTemplate} This ignite template.
*/ */
IgniteTemplate.prototype.numbers = function(from = 0, to = 100, placeholder = null, descending = false) { IgniteTemplate.prototype.numbers = function(from = 0, to = 100, placeholder = null, placeholderValue = -1, descending = false) {
//Generate html and populate the template with it. //Generate html and populate the template with it.
var html = ''; var html = '';
if (placeholder) { if (placeholder) {
html += `<option value='-1'>${placeholder}</option>`; html += `<option value='${placeholderValue}'>${placeholder}</option>`;
} }
if (descending) { if (descending) {