Commit 09c6d5eb authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с разделением ячеек, теперь в разделенные ячейки прописываются ширины (баг 19377).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48294 954022d7-b5bf-4e40-9824-e11837661b57
parent 5951d37a
......@@ -10648,11 +10648,14 @@ CTable.prototype =
var TempCell_pos = Cells_pos[Index2];
TempCell.Set_GridSpan( Grid_Info_new[0] );
TempCell.Set_W( new CTableMeasurement(tblwidth_Mm, Grid_width) );
for ( var Index = 1; Index < Cols; Index++ )
{
var NewCell = TempRow.Add_Cell( TempCell_pos.Cell + Index, TempRow, null, false );
NewCell.Copy_Pr( TempCell.Pr );
NewCell.Set_GridSpan( Grid_Info_new[Index] );
NewCell.Set_W( new CTableMeasurement(tblwidth_Mm, Grid_width) );
}
}
}
......
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