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

Заглушка для bug #26705

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64102 954022d7-b5bf-4e40-9824-e11837661b57
parent a2b9eb99
...@@ -351,9 +351,7 @@ var maxIndividualValues = 10000; ...@@ -351,9 +351,7 @@ var maxIndividualValues = 10000;
//updates //updates
if(styleName && addNameColumn) if(styleName && addNameColumn)
ws.setSelection(filterRange); ws.setSelection(filterRange);
ws._onUpdateFormatTable(filterRange, !!(styleName), true);
if(styleName)
ws._onUpdateFormatTable(filterRange, !!(styleName), true);
History.EndTransaction(); History.EndTransaction();
}; };
......
...@@ -11051,6 +11051,9 @@ ...@@ -11051,6 +11051,9 @@
* @private * @private
*/ */
WorksheetView.prototype._onUpdateFormatTable = function (range, recalc, changeRowsOrMerge) { WorksheetView.prototype._onUpdateFormatTable = function (range, recalc, changeRowsOrMerge) {
//ToDo заглушка, чтобы не падало. Нужно полностью переделывать этот код!!!! (Перенес выше из-за бага http://bugzserver/show_bug.cgi?id=26705)
this._checkUpdateRange(range);
if (!recalc) { if (!recalc) {
// При скрытии/открытии строк стоит делать update всему // При скрытии/открытии строк стоит делать update всему
if (changeRowsOrMerge) if (changeRowsOrMerge)
...@@ -11060,9 +11063,6 @@ ...@@ -11060,9 +11063,6 @@
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