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

Bug 27669 - Сортировка данных работает некорректно

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60093 954022d7-b5bf-4e40-9824-e11837661b57
parent fd89cc85
......@@ -7030,7 +7030,7 @@ Range.prototype.sort=function(nOption, nStartCol){
if(null != a.text)
{
if(null != b.text)
res = strcmp(a.text, b.text);
res = strcmp(a.text.toUpperCase(), b.text.toUpperCase());
else
res = 1;
}
......
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