Commit eb66217e authored by GoshaZotov's avatar GoshaZotov

fix bug 32513 - Автофильтр не скрывает значения, если процент сортировки Top...

fix bug 32513 - Автофильтр не скрывает значения, если процент сортировки Top 10 составляет меньше одного значения
parent 1efa6b83
...@@ -6273,7 +6273,7 @@ Top10.prototype.clone = function() { ...@@ -6273,7 +6273,7 @@ Top10.prototype.clone = function() {
Top10.prototype.isHideValue = function(val, top10Length) { Top10.prototype.isHideValue = function(val, top10Length) {
var res = false; var res = false;
if(null !== this.filterVal) if(null !== this.FilterVal)
{ {
if(this.Top) if(this.Top)
{ {
...@@ -6335,6 +6335,11 @@ Top10.prototype.init = function(range, reWrite){ ...@@ -6335,6 +6335,11 @@ Top10.prototype.init = function(range, reWrite){
if(this.Percent) if(this.Percent)
{ {
var num = parseInt(count * (this.Val / 100)); var num = parseInt(count * (this.Val / 100));
if(0 === num)
{
num = 1;
}
res = arr[num - 1]; res = arr[num - 1];
} }
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