[SSE] Change lock for sort options

This commit is contained in:
Julia Radzhabova 2019-11-22 17:46:48 +03:00
parent f6ad6e7307
commit 39f6b9123b
2 changed files with 6 additions and 5 deletions

View file

@ -162,7 +162,8 @@ define([ 'text!spreadsheeteditor/main/app/template/SortDialog.template',
headers: props.asc_getHasHeaders(),
// sensitive: props.asc_getCaseSensitive(),
sortcol: props.asc_getColumnSort(),
infilter: !!props.asc_getFilterInside()
lockHeaders: !!props.asc_getLockChangeHeaders(),
lockOrientation: !!props.asc_getLockChangeOrientation()
};
this.lblColumn.text(props.asc_getColumnSort() ? this.textColumn : this.textRow);

View file

@ -117,7 +117,7 @@ define([
labelText: this.textTopBottom,
name: 'asc-radio-sort-orient'
}).on('change', _.bind(function(field, newValue, eOpts) {
newValue && this.chHeaders.setDisabled(this.props.infilter);
newValue && this.chHeaders.setDisabled(this.props.lockHeaders);
}, this));
this.radioLeft = new Common.UI.RadioBox({
@ -139,13 +139,13 @@ define([
if (props) {
this.chHeaders.setValue(props.headers);
this.chCase.setValue(props.sensitive);
(props.sortcol || props.infilter) ? this.radioTop.setValue(true) : this.radioLeft.setValue(true);
this.radioLeft.setDisabled(props.infilter);
(props.sortcol || props.lockOrientation) ? this.radioTop.setValue(true) : this.radioLeft.setValue(true);
this.radioLeft.setDisabled(props.lockOrientation);
}
},
getSettings: function () {
return {headers: this.radioTop.getValue() && (this.chHeaders.getValue()=='checked'), sensitive: this.chCase.getValue()=='checked', sortcol: this.radioTop.getValue(), infilter: this.props.infilter};
return {headers: this.radioTop.getValue() && (this.chHeaders.getValue()=='checked'), sensitive: this.chCase.getValue()=='checked', sortcol: this.radioTop.getValue(), lockHeaders: this.props.lockHeaders, lockOrientation: this.props.lockOrientation};
},
textTitle: 'Sort Options',