Commit ece15bba authored by GoshaZotov's avatar GoshaZotov Committed by Alexander.Trofimov

Bug #32283 - Не возникает предупреждение при применении Select Data в Table...

Bug #32283 - Не возникает предупреждение при применении Select Data в Table Settings для одной ячейки в шапке форматированной таблицы
parent 899abc27
...@@ -13240,7 +13240,10 @@ ...@@ -13240,7 +13240,10 @@
var intersectionTables = this.model.autoFilters.getTableIntersectionRange(range); var intersectionTables = this.model.autoFilters.getTableIntersectionRange(range);
if (0 < intersectionTables.length) { if (0 < intersectionTables.length) {
var tablePart = intersectionTables[0]; var tablePart = intersectionTables[0];
if (range.r1 !== tablePart.Ref.r1)//первая строка таблицы не равна первой строке выделенного диапазона if(range.isOneCell())
{
res = c_oAscError.ID.FTChangeTableRangeError
}else if (range.r1 !== tablePart.Ref.r1)//первая строка таблицы не равна первой строке выделенного диапазона
{ {
res = c_oAscError.ID.FTChangeTableRangeError; res = c_oAscError.ID.FTChangeTableRangeError;
} else if (intersectionTables.length !== 1)//выделено несколько таблиц } else if (intersectionTables.length !== 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