Commit 74d2cff1 authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE] Изменения в подсветке дефолтного цвета шрифта для фильтров и сортировки.

parent fd7d2bcd
...@@ -704,7 +704,7 @@ define([ ...@@ -704,7 +704,7 @@ define([
el: $('#filter-dlg-filter-cells-color'), el: $('#filter-dlg-filter-cells-color'),
colors: [] colors: []
}); });
this.mnuFilterColorCellsPicker.on('select', _.bind(this.onFilterColorSelect, this, null)); this.mnuFilterColorCellsPicker.on('select', _.bind(this.onFilterColorSelect, this, true));
this.mnuFilterColorFontPicker = new Common.UI.ColorPaletteExt({ this.mnuFilterColorFontPicker = new Common.UI.ColorPaletteExt({
el: $('#filter-dlg-filter-font-color'), el: $('#filter-dlg-filter-font-color'),
...@@ -933,8 +933,8 @@ define([ ...@@ -933,8 +933,8 @@ define([
} }
var colorFilter = filterObj.asc_getFilter(); var colorFilter = filterObj.asc_getFilter();
colorFilter.asc_setCellColor(isCellColor); colorFilter.asc_setCellColor(isCellColor ? null : false);
colorFilter.asc_setCColor(color == 'transparent' ? null : Common.Utils.ThemeColor.getRgbColor(color)); colorFilter.asc_setCColor((isCellColor && color == 'transparent' || !isCellColor && color == '#000000') ? null : Common.Utils.ThemeColor.getRgbColor(color));
this.api.asc_applyAutoFilter(this.configTo); this.api.asc_applyAutoFilter(this.configTo);
...@@ -943,7 +943,8 @@ define([ ...@@ -943,7 +943,8 @@ define([
onSortColorSelect: function(type, picker, color) { onSortColorSelect: function(type, picker, color) {
if (this.api && this.configTo) { if (this.api && this.configTo) {
this.api.asc_sortColFilter(type, this.configTo.asc_getCellId(), this.configTo.asc_getDisplayName(), color == 'transparent' ? null : Common.Utils.ThemeColor.getRgbColor(color)); var isCellColor = (type == Asc.c_oAscSortOptions.ByColorFill);
this.api.asc_sortColFilter(type, this.configTo.asc_getCellId(), this.configTo.asc_getDisplayName(), (isCellColor && color == 'transparent' || !isCellColor && color == '#000000') ? null : Common.Utils.ThemeColor.getRgbColor(color));
} }
this.close(); this.close();
}, },
...@@ -1067,7 +1068,10 @@ define([ ...@@ -1067,7 +1068,10 @@ define([
if (hasColors) { if (hasColors) {
var colors = []; var colors = [];
colorsFont.forEach(function(item, index) { colorsFont.forEach(function(item, index) {
colors.push(Common.Utils.ThemeColor.getHexColor(item.get_r(), item.get_g(), item.get_b()).toLocaleUpperCase()); if (item)
colors.push(Common.Utils.ThemeColor.getHexColor(item.get_r(), item.get_g(), item.get_b()).toLocaleUpperCase());
else
colors.push('000000');
}); });
this.mnuSortColorFontPicker.updateColors(colors); this.mnuSortColorFontPicker.updateColors(colors);
this.mnuFilterColorFontPicker.updateColors(colors); this.mnuFilterColorFontPicker.updateColors(colors);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment