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

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

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62918 954022d7-b5bf-4e40-9824-e11837661b57
parent be0f48c0
...@@ -18001,19 +18001,8 @@ CTable.prototype = ...@@ -18001,19 +18001,8 @@ CTable.prototype =
} }
else else
{ {
// Определим какие строки попадают на данную страницу
Row_start = this.Pages[PNum].FirstRow; Row_start = this.Pages[PNum].FirstRow;
Row_last = this.Pages[PNum].LastRow; Row_last = this.Pages[PNum].LastRow;
// Row_last = Row_start;
//
// if (PNum + 1 < this.Pages.length)
// {
// Row_last = this.Pages[PNum + 1].FirstRow;
// if (Row_last != Row_start && false === this.RowsInfo[Row_last].FirstPage)
// Row_last--;
// }
// else
// Row_last = this.Content.length - 1;
} }
if ( Row_last < Row_start ) if ( Row_last < Row_start )
...@@ -19959,7 +19948,7 @@ CTableRow.prototype = ...@@ -19959,7 +19948,7 @@ CTableRow.prototype =
this.Pr.GridAfter = undefined; this.Pr.GridAfter = undefined;
if ( undefined != NewAfter.WAfter ) if ( undefined != NewAfter.WAfter )
this.Pr.WAfter = WAfter; this.Pr.WAfter = NewAfter.WAfter;
else else
this.Pr.WAfter = undefined; this.Pr.WAfter = undefined;
......
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