Commit 471391ee authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

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

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

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60148 954022d7-b5bf-4e40-9824-e11837661b57
parent a6db771b
...@@ -18799,11 +18799,11 @@ CTable.prototype = ...@@ -18799,11 +18799,11 @@ CTable.prototype =
if (GridSpan !== Cell.Get_GridSpan()) if (GridSpan !== Cell.Get_GridSpan())
break; break;
CellsArray.splice(0, 0, Cell);
var Vmerge = Cell.Get_VMerge(); var Vmerge = Cell.Get_VMerge();
if (vmerge_Continue !== Vmerge) if (vmerge_Continue !== Vmerge)
break; break;
CellsArray.splice(0, 0, Cell);
} }
// Ищем ячейки вниз // Ищем ячейки вниз
...@@ -19797,18 +19797,14 @@ CTableRow.prototype = ...@@ -19797,18 +19797,14 @@ CTableRow.prototype =
Clear_DirectFormatting : function(bClearMerge) Clear_DirectFormatting : function(bClearMerge)
{ {
// Очищаем все строки и всех ее ячеек // Очищаем все строки и всех ее ячеек
if (true === bClearMerge)
if ( true === bClearMerge )
{ {
this.Set_After( undefined, undefined ); this.Set_After(undefined, undefined);
this.Set_Before( undefined, undefined ); this.Set_Before(undefined, undefined);
this.Set_Height(undefined, undefined);
} }
this.Set_CellSpacing( undefined ); this.Set_CellSpacing(undefined);
if(!(this.Table.bPresentation === true))
{
this.Set_Height( undefined, undefined );
}
var Count = this.Content.length; var Count = this.Content.length;
for ( var Index = 0; Index < Count; Index++ ) for ( var Index = 0; Index < Count; Index++ )
......
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