Commit 186f5550 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@55623 954022d7-b5bf-4e40-9824-e11837661b57
parent 7ff592f2
......@@ -17651,7 +17651,17 @@ CTable.prototype =
this.Content[Ind].Next = ( Ind < this.Content.length - 1 ? this.Content[Ind + 1] : null );
}
},
ReIndexing : function()
{
this.Internal_ReIndexing(0);
var Count = this.Content.length;
for ( var Ind = StartIndex; Ind < Count; Ind++ )
{
this.Content[Ind].Internal_ReIndexing(0);
}
},
// Переделываем сетку таблицы заново, исходя из массива RowsInfo
// В данном массиве заданы для каждой строки ширины всех ячеек (либо
......
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