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

для бага Bug 20776 - Невозможно отобразить в ячейке время больше 24 часов

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50274 954022d7-b5bf-4e40-9824-e11837661b57
parent a5c1b74a
......@@ -2634,6 +2634,8 @@ FormatParser.prototype =
sFormat = "m/d/yyyy h:mm:ss AM/PM";
else if(true == bDate)
sFormat = "m/d/yyyy";
else if(dValue > 1)
sFormat = "[hh]:mm:ss";
else
sFormat = "h:mm:ss AM/PM";
res = {format: sFormat, value: dValue, bDateTime: true};
......
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