Commit a8037d52 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

правка для expandColsOnScroll/expandRowsOnScroll

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59464 954022d7-b5bf-4e40-9824-e11837661b57
parent 0b22a20b
...@@ -977,9 +977,9 @@ var gUndoInsDelCellsFlag = true; ...@@ -977,9 +977,9 @@ var gUndoInsDelCellsFlag = true;
//проверяем диапазон //проверяем диапазон
if (ws.cols.length < endCol) if (ws.cols.length < endCol)
ws.expandColsOnScroll(false, true, endCol); ws.expandColsOnScroll(false, true, endCol + 1);
if (ws.rows.length < endRow) if (ws.rows.length < endRow)
ws.expandRowsOnScroll(false, true, endRow); ws.expandRowsOnScroll(false, true, endRow + 1);
for(var col = startCol; col <= endCol; col++) for(var col = startCol; col <= endCol; col++)
{ {
var idCell = new CellAddress(allFil.r1, col, 0); var idCell = new CellAddress(allFil.r1, col, 0);
......
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