Commit 3915d428 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

удалил лишние параметры у ф-ии isEmptyAutoFilters

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64108 954022d7-b5bf-4e40-9824-e11837661b57
parent 8bd536df
...@@ -1134,7 +1134,7 @@ var maxIndividualValues = 10000; ...@@ -1134,7 +1134,7 @@ var maxIndividualValues = 10000;
} }
}, },
isEmptyAutoFilters: function(ar, insertType, insCells, deleteFilterAfterDeleteColRow, exceptionArray) isEmptyAutoFilters: function(ar, insertType, exceptionArray)
{ {
var aWs = this._getCurrentWS(); var aWs = this._getCurrentWS();
var activeCells = ar.clone(); var activeCells = ar.clone();
...@@ -1160,8 +1160,7 @@ var maxIndividualValues = 10000; ...@@ -1160,8 +1160,7 @@ var maxIndividualValues = 10000;
{ {
var oldFilter = filter.clone(null); var oldFilter = filter.clone(null);
var oRange = Range.prototype.createFromBBox(aWs, oldFilter.Ref); var oRange = Range.prototype.createFromBBox(aWs, oldFilter.Ref);
if(insCells)
oldFilter.insCells = true;
var bbox = oRange.getBBox0(); var bbox = oRange.getBBox0();
//смотрим находится ли фильтр(первая его строчка) внутри выделенного фрагмента //смотрим находится ли фильтр(первая его строчка) внутри выделенного фрагмента
...@@ -1177,7 +1176,7 @@ var maxIndividualValues = 10000; ...@@ -1177,7 +1176,7 @@ var maxIndividualValues = 10000;
//заносим в историю //заносим в историю
if(isTablePart){ if(isTablePart){
t._addHistoryObj(oldFilter, historyitem_AutoFilter_Empty, {activeCells: activeCells}, deleteFilterAfterDeleteColRow, bbox); t._addHistoryObj(oldFilter, historyitem_AutoFilter_Empty, {activeCells: activeCells}, null, bbox);
} }
else else
t._addHistoryObj(oldFilter, historyitem_AutoFilter_Empty, {activeCells: activeCells}, null, oldFilter.Ref); t._addHistoryObj(oldFilter, historyitem_AutoFilter_Empty, {activeCells: activeCells}, null, oldFilter.Ref);
...@@ -4179,7 +4178,7 @@ var maxIndividualValues = 10000; ...@@ -4179,7 +4178,7 @@ var maxIndividualValues = 10000;
//если переносим просто данные, причём шапки совпадают, то фильтр не очищаем //если переносим просто данные, причём шапки совпадают, то фильтр не очищаем
if(!(arnTo.r1 === ref.r1 && arnTo.c1 === ref.c1) && !arnFrom.containsRange(ref)) if(!(arnTo.r1 === ref.r1 && arnTo.c1 === ref.c1) && !arnFrom.containsRange(ref))
this.isEmptyAutoFilters(ref, null, null, null, findFilters); this.isEmptyAutoFilters(ref, null, findFilters);
} }
applyStyleByCells = false; applyStyleByCells = false;
} }
......
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