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

Bug 26275 - При вводе числа, разделенного точкой или запятой, формат ячейки...

Bug 26275 - При вводе числа, разделенного точкой или запятой, формат ячейки преобразуется в Дату/Номер.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59460 954022d7-b5bf-4e40-9824-e11837661b57
parent e3e1659f
......@@ -3262,7 +3262,7 @@ FormatParser.prototype =
oDataType = oDataTypes.digit;
else if(" " == sChar)
oDataType = oDataTypes.space;
else if ("/" == sChar || "." == sChar || "-" == sChar || ":" == sChar || cultureInfo.DateSeparator == sChar || cultureInfo.TimeSeparator == sChar)
else if ("/" == sChar || "-" == sChar || ":" == sChar || cultureInfo.DateSeparator == sChar || cultureInfo.TimeSeparator == sChar)
oDataType = oDataTypes.delimiter;
else
oDataType = oDataTypes.letter;
......
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