Commit d55627be authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=27337 - Потеря выбора данных в окне...

http://bugzserver/show_bug.cgi?id=27337 -  Потеря выбора данных в окне автофильтра после скрытия значений фильтрованного диапазона, у которых формат отличен от General, Integer и Text

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@63951 954022d7-b5bf-4e40-9824-e11837661b57
parent ee924ac7
...@@ -3606,7 +3606,8 @@ var maxIndividualValues = 10000; ...@@ -3606,7 +3606,8 @@ var maxIndividualValues = 10000;
tempResult.isDateFormat = cell.getNumFormat().isDateTimeFormat(); tempResult.isDateFormat = cell.getNumFormat().isDateTimeFormat();
//filter current button //filter current button
if(!filterColumns[currentElemArray].Top10 && !isCustomFilters && !filterColumns[currentElemArray].isHideValue(val, isDateTimeFormat)) var checkValue = isDateTimeFormat ? val : text;
if(!filterColumns[currentElemArray].Top10 && !isCustomFilters && !filterColumns[currentElemArray].isHideValue(checkValue, isDateTimeFormat))
tempResult.visible = true; tempResult.visible = true;
else else
{ {
......
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