Commit 6a4b2ecf authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с пересылкой таблицы с заголовочными строками в совместном...

Исправлен баг с пересылкой таблицы с заголовочными строками в совместном редактировании (баг 19200).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48174 954022d7-b5bf-4e40-9824-e11837661b57
parent 7ee1828e
......@@ -17580,16 +17580,19 @@ CTable.prototype =
Internal_Copy_Grid : function(Grid)
{
var Count = Grid.length;
var NewGrid = new Array(Count);
var Index = 0;
for (; Index < Count; Index++ )
NewGrid[Index] = Grid[Index];
return NewGrid;
}
if ( undefined !== Grid && null !== Grid )
{
var Count = Grid.length;
var NewGrid = new Array(Count);
var Index = 0;
for (; Index < Count; Index++ )
NewGrid[Index] = Grid[Index];
return NewGrid;
}
return undefined;
}
};
// Класс CTableRow
......@@ -18809,7 +18812,7 @@ CTableRow.prototype =
if ( true === bUndefined )
this.Pr.TableHeader = undefined;
else
this.Pr.TableHeader = Reader.Get_Bool();
this.Pr.TableHeader = Reader.GetBool();
this.Recalc_CompiledPr();
break;
......
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