[SSE] Fix Bug 41782
This commit is contained in:
parent
f83a20c16c
commit
7cffe71a8b
|
@ -142,6 +142,10 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
this.inputName._input.on('input', function (input, value) {
|
||||||
|
me.isInputFirstChange && me.inputName.showError();
|
||||||
|
me.isInputFirstChange = false;
|
||||||
|
});
|
||||||
|
|
||||||
this.cmbScope = new Common.UI.ComboBox({
|
this.cmbScope = new Common.UI.ComboBox({
|
||||||
el : $('#named-range-combo-scope'),
|
el : $('#named-range-combo-scope'),
|
||||||
|
@ -272,6 +276,7 @@ define([
|
||||||
checkrange = this.txtDataRange.checkValidate();
|
checkrange = this.txtDataRange.checkValidate();
|
||||||
if (checkname !== true) {
|
if (checkname !== true) {
|
||||||
this.inputName.cmpEl.find('input').focus();
|
this.inputName.cmpEl.find('input').focus();
|
||||||
|
this.isInputFirstChange = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (checkrange !== true) {
|
if (checkrange !== true) {
|
||||||
|
|
Loading…
Reference in a new issue