Commit ba15d1a8 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил баг http://bugzserver/show_bug.cgi?id=26188

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57998 954022d7-b5bf-4e40-9824-e11837661b57
parent 33b82d02
...@@ -7757,19 +7757,19 @@ ...@@ -7757,19 +7757,19 @@
if (!copyRange) if (!copyRange)
t.autoFilters._preMoveAutoFilters(arnFrom); t.autoFilters._preMoveAutoFilters(arnFrom);
t.model._moveRange(arnFrom, arnTo, copyRange); t.model._moveRange(arnFrom, arnTo, copyRange);
t._updateCellsRange(arnTo, false, true);
t.activeRange = arnTo.clone(true);
t.cellCommentator.moveRangeComments(arnFrom, arnTo); t.cellCommentator.moveRangeComments(arnFrom, arnTo);
t.objectRender.moveRangeDrawingObject(arnFrom, arnTo, false); t.objectRender.moveRangeDrawingObject(arnFrom, arnTo, false);
if (!copyRange) { if (!copyRange) {
t.autoFilters._moveAutoFilters(arnTo, arnFrom); t.autoFilters._moveAutoFilters(arnTo, arnFrom);
// Вызываем функцию пересчета для заголовков форматированной таблицы // Вызываем функцию пересчета для заголовков форматированной таблицы
t.autoFilters._renameTableColumn( arnFrom ); t.autoFilters._renameTableColumn(arnFrom);
t.autoFilters._renameTableColumn( arnTo ); t.autoFilters._renameTableColumn(arnTo);
t.autoFilters.reDrawFilter( arnFrom ); t.autoFilters.reDrawFilter(arnFrom);
} }
History.EndTransaction(); History.EndTransaction();
t._updateCellsRange(arnTo, false, true);
t.activeRange = arnTo.clone(true);
// Сбрасываем параметры // Сбрасываем параметры
t.activeMoveRange = null; t.activeMoveRange = null;
t.startCellMoveRange = null; t.startCellMoveRange = null;
......
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