Added code to select the first option in a select element if the new value is null or empty.
This commit is contained in:
parent
84464863c7
commit
eb3ed065a2
@ -1337,6 +1337,12 @@ class IgniteTemplate {
|
|||||||
if (this.element.textContent != newValue.toString()) {
|
if (this.element.textContent != newValue.toString()) {
|
||||||
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 {
|
} else {
|
||||||
if (this.element.value != newValue) {
|
if (this.element.value != newValue) {
|
||||||
this.element.value = newValue;
|
this.element.value = newValue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user