Commit 2856cd99 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

при открыти неправильно указывался тип ячейки.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53553 954022d7-b5bf-4e40-9824-e11837661b57
parent 4d8b14fa
...@@ -5488,7 +5488,11 @@ function Binary_WorksheetTableReader(stream, wb, aSharedStrings, aCellXfs, Dxfs, ...@@ -5488,7 +5488,11 @@ function Binary_WorksheetTableReader(stream, wb, aSharedStrings, aCellXfs, Dxfs,
{ {
var ss = this.aSharedStrings[oNewCell.oValue.number]; var ss = this.aSharedStrings[oNewCell.oValue.number];
if(null != ss) if(null != ss)
{
var nType = oNewCell.oValue.type;
oNewCell.oValue = ss.clone(oNewCell); oNewCell.oValue = ss.clone(oNewCell);
oNewCell.oValue.type = nType;
}
} }
aCells[nCellCol] = oNewCell; aCells[nCellCol] = oNewCell;
} }
......
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