[SSE] Fix Bug 41782

This commit is contained in:
Julia Radzhabova 2019-10-31 12:56:46 +03:00
parent f83a20c16c
commit 7cffe71a8b

View file

@ -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) {