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
...@@ -17579,6 +17579,8 @@ CTable.prototype = ...@@ -17579,6 +17579,8 @@ CTable.prototype =
}, },
Internal_Copy_Grid : function(Grid) Internal_Copy_Grid : function(Grid)
{
if ( undefined !== Grid && null !== Grid )
{ {
var Count = Grid.length; var Count = Grid.length;
var NewGrid = new Array(Count); var NewGrid = new Array(Count);
...@@ -17589,7 +17591,8 @@ CTable.prototype = ...@@ -17589,7 +17591,8 @@ CTable.prototype =
return NewGrid; 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