Commit a4cee8fe authored by GoshaZotov's avatar GoshaZotov

fix bug 32738

parent 422000ea
......@@ -8316,15 +8316,22 @@
WorksheetView.prototype.moveRangeHandle = function (arnFrom, arnTo, copyRange) {
var t = this;
var oTables = t.model.autoFilters._searchFiltersInRange(arnFrom, true);
var onApplyMoveRangeHandleCallback = function (isSuccess) {
if (false === isSuccess) {
t._cleanSelectionMoveRange();
if (copyRange && oTables && !t.handlers.trigger("getLockDefNameManagerStatus")) {
t.handlers.trigger("onErrorEvent", c_oAscError.ID.LockCreateDefName, c_oAscError.Level.NoCritical);
}
t._cleanSelectionMoveRange();
return;
}
var onApplyMoveAutoFiltersCallback = function (isSuccess) {
if (false === isSuccess) {
t._cleanSelectionMoveRange();
if (copyRange && oTables && !t.handlers.trigger("getLockDefNameManagerStatus")) {
t.handlers.trigger("onErrorEvent", c_oAscError.ID.LockCreateDefName, c_oAscError.Level.NoCritical);
}
t._cleanSelectionMoveRange();
return;
}
......
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