Commit 1a55f810 authored by Alexander.Trofimov's avatar Alexander.Trofimov

Баг с рассчетом селекта для добавления строк (c -> r)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48913 954022d7-b5bf-4e40-9824-e11837661b57
parent 754b1ec6
......@@ -607,7 +607,7 @@
}
var arrInsertRows = this.m_oInsertRows[sheetId];
// Перед добавлением нужно передвинуть имеющиеся
var countRows = range.c2 - range.c1 + 1;
var countRows = range.r2 - range.r1 + 1;
var isAddNewRange = true;
for (var i = 0; i < arrInsertRows.length; ++i) {
if (arrInsertRows[i].r1 > range.r1) {
......
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