Commit 6f0fad5b authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

При открытии делаем просто clearRecalcIndex (вместо sendChanges)

Правка бага http://bugzserver/show_bug.cgi?id=25160 (при втором сохранении терлось одно изменение).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57096 954022d7-b5bf-4e40-9824-e11837661b57
parent 8888abbe
......@@ -1698,7 +1698,7 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
_onUpdateAfterApplyChanges: function () {
if (!this.IsSendDocumentLoadCompleate) {
// При открытии после принятия изменений мы должны сбросить пересчетные индексы
this.collaborativeEditing.sendChanges();
this.collaborativeEditing.clearRecalcIndex();
this.IsSendDocumentLoadCompleate = true;
this.asc_EndAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.Open);
}
......
......@@ -246,7 +246,7 @@
}
// Отправляем на сервер изменения
this.handlers.trigger("sendChanges", null !== History.SavedIndex ? Math.min(History.SavedIndex, History.Index) : null,
this.handlers.trigger("sendChanges", null !== History.SavedIndex ? Math.min(History.SavedIndex + 1, History.Index + 1) : null,
this.getRecalcIndexSave(this.m_oRecalcIndexColumns), this.getRecalcIndexSave(this.m_oRecalcIndexRows));
if (bIsCollaborative) {
......
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