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

для Bug 31395 - Формат в ячейке Дата/Время (Date/Time) не меняется после смены...

для Bug 31395 - Формат в ячейке Дата/Время (Date/Time) не меняется после смены региональных настроек

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67660 954022d7-b5bf-4e40-9824-e11837661b57
parent 275bc827
......@@ -3086,10 +3086,14 @@ CCellValue.prototype =
sDateFormat += "yyyy";
}
}
var sTimeFormat = 'h:mm:ss';
if (cultureInfo.AMDesignator.length > 0 && cultureInfo.PMDesignator.length > 0){
sTimeFormat += ' AM/PM';
}
if(bDate && bTime)
oNumFormat = oNumFormatCache.get(sDateFormat + " h:mm:ss AM/PM");
oNumFormat = oNumFormatCache.get(sDateFormat + ' ' + sTimeFormat);
else if(bTime)
oNumFormat = oNumFormatCache.get("h:mm:ss AM/PM");
oNumFormat = oNumFormatCache.get(sTimeFormat);
else
oNumFormat = oNumFormatCache.get(sDateFormat);
......
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