[SSE] Set empty range for function arguments

This commit is contained in:
Julia Radzhabova 2020-05-18 20:17:25 +03:00
parent 3799f6ecdb
commit 8d55696180
2 changed files with 2 additions and 1 deletions

View file

@ -81,7 +81,7 @@ define([
el : $('#id-dlg-cell-range'), el : $('#id-dlg-cell-range'),
name : 'range', name : 'range',
style : 'width: 100%;', style : 'width: 100%;',
allowBlank : false, allowBlank : this.options.allowBlank || false,
blankError : this.txtEmpty, blankError : this.txtEmpty,
validateOnChange: true validateOnChange: true
}); });

View file

@ -356,6 +356,7 @@ define([
}; };
var win = new SSE.Views.CellRangeDialog({ var win = new SSE.Views.CellRangeDialog({
allowBlank: true,
handler: handlerDlg handler: handlerDlg
}).on('close', function() { }).on('close', function() {
input.setValue(changedValue); input.setValue(changedValue);