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

http://bugzserver/show_bug.cgi?id=26384 - Дублирование кнопок автофильтра при...

http://bugzserver/show_bug.cgi?id=26384 - Дублирование кнопок автофильтра при добавлении строк рядом с таблицей

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58221 954022d7-b5bf-4e40-9824-e11837661b57
parent 4c8aa7b8
......@@ -5142,6 +5142,10 @@ var gUndoInsDelCellsFlag = true;
this._editFilterAfterInsertColumn(range,val,undefined,type,activeCells);
}
}
else if(type == 'insRow' && colStart <= startRangeCell && colEnd >= endRangeCell)
{
this._editFilterAfterInsertColumn(range,val,undefined,type,activeCells);
}
else if((colStart >= startRangeCell && colStart <= endRangeCell && colEnd >= endRangeCell) || (colStart >= startRangeCell && colStart <= endRangeCell && colEnd > endRangeCell && val < 0))
{
if(val < 0)
......
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