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

Залил правки с форматированной таблицей

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58769 954022d7-b5bf-4e40-9824-e11837661b57
parent 37d4ab32
......@@ -10798,7 +10798,16 @@
};
// При добавлении форматированной таблицы расширяем, автоподбор по названию столбца
WorksheetView.prototype._onEndAddFormatTable = function (range) {
WorksheetView.prototype._onEndAddFormatTable = function (range, recalc) {
if (!recalc) {
// Пока вызовем updateRange, но стоит делать просто draw
this._updateCellsRange(range);
return;
}
if (!this.activeRange.isEqual(range))
this.setSelection(range);
var i, r = range.r1, bIsUpdate = false;
for (i = range.c1; i <= range.c2; ++i) {
if (this.onChangeWidthCallback(i, r, r, /*onlyIfMore*/true)) {
......@@ -10812,6 +10821,9 @@
this._calcColumnWidths(/*fullRecalc*/0);
this._updateVisibleColsCount();
this.changeWorksheet("update");
} else {
// Просто отрисуем
this.draw();
}
};
......
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