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

http://bugzserver/show_bug.cgi?id=26954 - [Drag&Drop] Некорректно...

http://bugzserver/show_bug.cgi?id=26954 - [Drag&Drop] Некорректно рассчитывается диапазон при переносе форматированной таблицы без фильтра, перекрывающей старый диапазон

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58728 954022d7-b5bf-4e40-9824-e11837661b57
parent 133aba2a
......@@ -6725,8 +6725,6 @@ var gUndoInsDelCellsFlag = true;
{
id = this._shiftId(buttons[n].id, diffCol, diffRow);
idNext = this._shiftId(buttons[n].idNext, diffCol, diffRow);
findFilters[i].result[b].id = id;
findFilters[i].result[b].idNext = idNext;
break;
}
}
......@@ -6736,6 +6734,15 @@ var gUndoInsDelCellsFlag = true;
}
}
//изменяем result у фильтра
for(var b = 0; b < findFilters[i].result.length; b++)
{
id = this._shiftId(findFilters[i].result[b].id, diffCol, diffRow);
idNext = this._shiftId(findFilters[i].result[b].idNext, diffCol, diffRow);
findFilters[i].result[b].id = id;
findFilters[i].result[b].idNext = idNext;
}
//при изменении кнопок, чтобы не было наложений, создаём массив changeButtonArray и изменяем сразу все нужные кнопки
for(var b in changeButtonArray)
{
......
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