Commit 5f3077ff authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил падение при сборке.

ToDo избавиться от этой заглушки.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@63915 954022d7-b5bf-4e40-9824-e11837661b57
parent 4f06259e
...@@ -10804,7 +10804,8 @@ ...@@ -10804,7 +10804,8 @@
this._recalculateAfterUpdate(arrRanges, lockDraw); this._recalculateAfterUpdate(arrRanges, lockDraw);
} }
}; };
WorksheetView.prototype.updateRange = function (range, canChangeColWidth, lockDraw) { // ToDo избавиться от этой функции!!!!Заглушка для принятия изменений
WorksheetView.prototype._checkUpdateRange = function (range) {
// Для принятия изменения нужно делать расширение диапазона // Для принятия изменения нужно делать расширение диапазона
if (this.model.workbook.bCollaborativeChanges) { if (this.model.workbook.bCollaborativeChanges) {
var bIsUpdateX = false, bIsUpdateY = false; var bIsUpdateX = false, bIsUpdateY = false;
...@@ -10836,6 +10837,9 @@ ...@@ -10836,6 +10837,9 @@
else if (bIsUpdateY) else if (bIsUpdateY)
this.handlers.trigger("reinitializeScrollY"); this.handlers.trigger("reinitializeScrollY");
} }
};
WorksheetView.prototype.updateRange = function (range, canChangeColWidth, lockDraw) {
this._checkUpdateRange(range);
this._updateCellsRange(range, canChangeColWidth, lockDraw); this._updateCellsRange(range, canChangeColWidth, lockDraw);
}; };
...@@ -11106,6 +11110,9 @@ ...@@ -11106,6 +11110,9 @@
return; return;
} }
//ToDo заглушка, чтобы не падало. Нужно полностью переделывать этот код!
this._checkUpdateRange(range);
if (!this.activeRange.isEqual(range)) if (!this.activeRange.isEqual(range))
this.setSelection(range); this.setSelection(range);
......
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