Commit c7c3854b authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

для Bug 24727 - [XLSX] Таблица открывается с ошибкой в консоли eCell is not defined

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56640 954022d7-b5bf-4e40-9824-e11837661b57
parent 7cb94c02
......@@ -967,12 +967,13 @@ var gUndoInsDelCellsFlag = true;
var startCol = allFil.c1;
var endCol = allFil.c2;
var endRow = allFil.r2;
//проверяем диапазон
if(ws.cols.length < eCell.first.col)
ws.expandColsOnScroll(false,true,eCell.first.col);
if(ws.rows.length < eCell.first.row)
ws.expandColsOnScroll(false,true,eCell.first.row);
if (ws.cols.length < endCol)
ws.expandColsOnScroll(false, true, endCol);
if (ws.rows.length < endRow)
ws.expandRowsOnScroll(false, true, endRow);
for(var col = startCol; col <= endCol; col++)
{
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