[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({
|
||||
el : $('#named-range-combo-scope'),
|
||||
|
@ -272,6 +276,7 @@ define([
|
|||
checkrange = this.txtDataRange.checkValidate();
|
||||
if (checkname !== true) {
|
||||
this.inputName.cmpEl.find('input').focus();
|
||||
this.isInputFirstChange = true;
|
||||
return;
|
||||
}
|
||||
if (checkrange !== true) {
|
||||
|
|
Loading…
Reference in a new issue