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 = ...@@ -17580,16 +17580,19 @@ CTable.prototype =
Internal_Copy_Grid : function(Grid) Internal_Copy_Grid : function(Grid)
{ {
var Count = Grid.length; if ( undefined !== Grid && null !== Grid )
var NewGrid = new Array(Count); {
var Index = 0; var Count = Grid.length;
for (; Index < Count; Index++ ) var NewGrid = new Array(Count);
NewGrid[Index] = Grid[Index]; var Index = 0;
for (; Index < Count; Index++ )
return NewGrid; NewGrid[Index] = Grid[Index];
}
return NewGrid;
}
return undefined;
}
}; };
// Класс CTableRow // Класс CTableRow
...@@ -18809,7 +18812,7 @@ CTableRow.prototype = ...@@ -18809,7 +18812,7 @@ CTableRow.prototype =
if ( true === bUndefined ) if ( true === bUndefined )
this.Pr.TableHeader = undefined; this.Pr.TableHeader = undefined;
else else
this.Pr.TableHeader = Reader.Get_Bool(); this.Pr.TableHeader = Reader.GetBool();
this.Recalc_CompiledPr(); this.Recalc_CompiledPr();
break; 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