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

правка для корректной работы undo/redo(открывались лишние строчки)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47062 954022d7-b5bf-4e40-9824-e11837661b57
parent 8416ce57
......@@ -1220,7 +1220,19 @@
//добавляем какие именно строки скрыты этим фильтром
//применяем к заданному диапазону фильтр и смотрим какие строки им скрыты
buttons[i].hiddenRows = this._getHiddenRows(buttons[i].id,buttons[i].idNext,filters,ws);
var hiddenRowsObj = this._getHiddenRows(buttons[i].id,buttons[i].idNext,filters,ws);
buttons[i].hiddenRows = hiddenRowsObj;
//изменяем result у объекта автофильтра
if(curFilForSort.result)
{
for(var n = 0; n < curFilForSort.result.length; n++)
{
if(curFilForSort.result[n].id == buttons[i].id)
{
curFilForSort.result[n].hiddenRows = hiddenRowsObj;
}
}
}
if(isSetFilter)
activeButtonFilter[activeButtonFilter.length] = buttons[i];
......@@ -1811,7 +1823,7 @@
if(!array)
{
cellId = autoFiltersObject.cellId;
array = autoFiltersObject.result;
array = Asc.clone(autoFiltersObject.result);
isArray = false;
}
else
......
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