Commit 3b047fcf authored by GoshaZotov's avatar GoshaZotov

Merge remote-tracking branch 'remotes/origin/release/3.8.1' into develop

parents 0b65b67c e751f83e
......@@ -2389,6 +2389,12 @@
tablePart.HeaderRowCount = tablePart.HeaderRowCount === null ? 0 : null;
tablePart.changeRef(null, 1, true);
if(tablePart.AutoFilter)
{
tablePart.AutoFilter = null;
this._openHiddenRows(tablePart);
}
}
else
{
......@@ -2411,6 +2417,12 @@
tablePart.HeaderRowCount = tablePart.HeaderRowCount === null ? 0 : null;
tablePart.changeRef(null, -1, true);
}
if(null === tablePart.AutoFilter)
{
tablePart.AutoFilter = new AscCommonExcel.AutoFilter();
tablePart.AutoFilter.Ref = tablePart.Ref.clone();
}
}
......
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