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

поправлен баг при добавлении форматированной таблицы в диапазон автофильтра

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48414 954022d7-b5bf-4e40-9824-e11837661b57
parent bc2b62b6
......@@ -1836,7 +1836,9 @@
return false;
var mainAdjacentCells;
if(activeCells.r1 == activeCells.r2 && activeCells.c1 == activeCells.c2)//если ячейка выделенная одна
if(alreadyAddFilter && alreadyAddFilter.changeAllFOnTable && alreadyAddFilter.range)//если к фильтру применяем форматированную таблицу
mainAdjacentCells = alreadyAddFilter.range;
else if(activeCells.r1 == activeCells.r2 && activeCells.c1 == activeCells.c2)//если ячейка выделенная одна
mainAdjacentCells = this._getAdjacentCellsAF(activeCells,ws,aWs);
else//выделено > 1 ячейки
mainAdjacentCells = Asc.clone(activeCells);
......
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