From 53b32e4efb7d55a3fac838f082b26ebb2c118a4a Mon Sep 17 00:00:00 2001 From: Aleksey Semikozov Date: Tue, 23 Jun 2026 17:00:54 +0000 Subject: [PATCH] Overlay - Do not stop show animation on document pointer down (T1330691) --- deploy/index.html | 126 ++++++++++++++++++ .../js/__internal/ui/overlay/overlay.ts | 4 - 2 files changed, 126 insertions(+), 4 deletions(-) create mode 100644 deploy/index.html diff --git a/deploy/index.html b/deploy/index.html new file mode 100644 index 000000000000..829bf0284419 --- /dev/null +++ b/deploy/index.html @@ -0,0 +1,126 @@ + + + + T1330691 - Scheduler Popup Animation Debug + + + + + + + + +

T1330691 - Scheduler Popup Animation Debug

+
+ Steps: Double-click empty slot (animation shows) → close → click same slot again (no animation). +
Check the debug log below for fx.animate / fx.stop calls and CSS transform values. +
+
+ +
+
+
+ + + + diff --git a/packages/devextreme/js/__internal/ui/overlay/overlay.ts b/packages/devextreme/js/__internal/ui/overlay/overlay.ts index d60cb6fdb01e..7dee4c01cddf 100644 --- a/packages/devextreme/js/__internal/ui/overlay/overlay.ts +++ b/packages/devextreme/js/__internal/ui/overlay/overlay.ts @@ -447,10 +447,6 @@ class Overlay< } _documentDownHandler(e: DxEvent): boolean { - if (this._showAnimationProcessing) { - this._stopAnimation(); - } - const { target } = e; const $target = $(target);