Added code to select the first option in a select element if the new value is null or empty.

This commit is contained in:
MattMo 2022-12-12 21:10:55 -08:00
parent 84464863c7
commit eb3ed065a2

View File

@ -1337,6 +1337,12 @@ class IgniteTemplate {
if (this.element.textContent != newValue.toString()) {
this.element.textContent = newValue.toString();
}
} else if (this.element instanceof HTMLSelectElement) {
if (newValue == null || newValue == undefined || newValue == '') {
this.element.value = this.element.options[0].value;
} else if (this.element.value != newValue) {
this.element.value = newValue;
}
} else {
if (this.element.value != newValue) {
this.element.value = newValue;