Merge branch 'feature/Bug_41231' into develop

This commit is contained in:
Julia Radzhabova 2019-09-18 18:24:12 +03:00
commit 0594718432

View file

@ -137,9 +137,10 @@ define([
value : '',
maxLength: 40,
validation : function(value) {
var check = me.props.asc_CheckNewBookmarkName(value);
me.btnAdd.setDisabled(!check);
return (check || _.isEmpty(value)) ? true : me.txtInvalidName;
var check = me.props.asc_CheckNewBookmarkName(value),
exist = me.props.asc_HaveBookmark(value);
me.btnAdd.setDisabled(!check && !exist);
return (check || _.isEmpty(value) || exist) ? true : me.txtInvalidName;
}
}).on ('changing', function (input, value) {
var exist = me.props.asc_HaveBookmark(value);
@ -315,7 +316,10 @@ define([
gotoBookmark: function(btn, eOpts){
var rec = this.bookmarksList.getSelectedRec();
rec && this.props.asc_SelectBookmark(rec.get('value'));
if (rec)
this.props.asc_SelectBookmark(rec.get('value'));
else if (this.txtName.getValue()!=='')
this.props.asc_SelectBookmark(this.txtName.getValue());
},
addBookmark: function(btn, eOpts){