Completed
Last Updated: 13 Mar 2024 12:56 by ADMIN

Bug report

Window content remains when the visible configuration is set to false

Reproduction of the problem

  1. Open the following dojo
  2. Notice, that the Window's content remains initially visible in the DOM.

Current behavior

Currently, in order to avoid this behavior, an inline display:none style needs to be added to the window container. This does not convey however with CSP's Inline Styles convention.

Expected/desired behavior

It would be beneficial if the container can be wrapped with the k-hidden class and automatically detect it during the widget's initialization. This will bolster the CSP compliance for the Window widget and allow the customers to use inline classes instead.

Environment

  • Kendo UI version: 2023.3.1114
  • Browser: [all]
Completed
Last Updated: 09 Sep 2022 08:24 by ADMIN
Release 2022.R3

Bug report

The restore event is missing in the Window typescript definition

Reproduction of the problem

Open the typescript/kendo.all.d.ts file and search for kendo Window restore event

Expected/desired behavior

The restore event should be defined.

Environment

  • Kendo UI version: 2022.2.510
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 22 Dec 2021 14:21 by ADMIN
Style for k-window-titlebar in kendo.common.min.css is missing display:flex and flex-direction:row which makes the k-windows-actions div (close button, etc) wrap to the next line instead of being displayed in top right corner. Tracked by comparing new version (2021.3.1207) with previous version (2021.2.511). Not specific to browser.
Completed
Last Updated: 22 Nov 2023 14:24 by ADMIN
Created by: Laurent
Comments: 2
Category: Window
Type: Bug Report
1

Bug report

Upon opening the Window, the widget is not getting focused when using jQuery 3.6.0.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/EcIheNif/3

Current behavior

The Window is not focused upon opening.

Expected/desired behavior

The Window should be focused upon opening.

Environment

  • Kendo UI version: 2021.3.914
  • jQuery version: 3.6.0
  • Browser: [all]
Completed
Last Updated: 18 Jan 2021 09:09 by ADMIN
Release 2021.R1
Created by: Robert Madrian
Comments: 0
Category: Window
Type: Bug Report
0

Bug report

Regression introduced in R3 2020 SP1.

If the configured width of the Window exceeds the viewport width and animation is configured, the animation of the Window is broken.

Reproduction of the problem

Run the Dojo example and click the button

Note: If the issue is not replicated try to decrease the visible area.

Current behavior

The animation seems broken (screencast)

Expected/desired behavior

The Window should slide properly no matter of its width.

Environment

  • Kendo UI version: 2020.3.1021
  • Browser: [all ]
Completed
Last Updated: 16 Oct 2020 07:53 by ADMIN
Release 2020.R3.SP.next

Bug report

Clicking inside the content of a modal Window with an iframe and then closing the Window does not remove the k-state-focused class from the Window wrapper.

Reproduction of the problem

  1. Run this dojo
  2. Click the Open Window button
  3. Click inside to content of the Window
  4. Close the Window

Current behavior

The window widget wrapper still has a k-state-focused class:

<div class="k-widget k-window k-state-focused" data-role="draggable" style="visibility: visible; display: none; padding-top: 45px; min-width: 90px; min-height: 50px; z-index: 10004; transform: scale(0.7);">
...
</div>

Expected/desired behavior

k-state-focused class should be removed upon closing of the Window

Environment

  • Kendo UI version: 2020.3.915
  • Browser: [all]
Completed
Last Updated: 01 Dec 2021 11:59 by ADMIN

Bug report

When using Kendo Bootstrap v4 theme and attempting to display a maximized Kendo Window with iFrame content the iFrame does not take up the full height of the Kendo Window.
The behavior is observed with Safari browser on MacOS X or iOS

Reproduction of the problem

  1. Run this dojo with Bootstrap-v4 bug example

Expected/desired behavior

The iFrame should take up the full height of the Kendo Window.

Adding the following style resolves the observed behavior:

<style type="text/css">
    .k-window-content.k-window-iframecontent {
        height:100%;
    }
</style>

Environment

  • Kendo UI version: 2020.2.513
  • Browser: [Safari | iOS Safari]
Completed
Last Updated: 27 Jan 2021 14:44 by ADMIN
Release 2021.R1.SP.next

Bug report

When there are multiple Window components initialized in one page the initially defined z-index is not changing when tapping on a given Window on an iPad device in the Safari browser.

Reproduction of the problem

  1. Open this Dojo example on an iPad
  2. Drag the upper Window(Number 3) aside and tap on the second one

Possible fix
Replace:
wrapper.add(wrapper.children('.k-resize-handle,' + KWINDOWTITLEBAR)).on('mousedown' + NS, proxy(that.toFront, that));

With

wrapper.add(wrapper.children('.k-resize-handle,' + KWINDOWTITLEBAR)).on('mousedown' + NS, proxy(that.toFront, that)).on('touchstart' + NS, proxy(that.toFront, that));

Current behavior

The second Window continues to stay under window number 3

Expected/desired behavior

Once a given Window is tapped its should pop to the top and its content shouldn't be hidden by other Windows.

  • Open the linked above Dojo project in Chrome for iPad and see the correct behavior

Environment

  • Kendo UI version: 2019.3.1023
  • jQuery version: x.y
  • Browser: [iOS 13.2 Safari ]
Completed
Last Updated: 13 Jan 2020 09:19 by ADMIN
Release R1 2020
Created by: Li
Comments: 3
Category: Window
Type: Bug Report
0

I have a scrollable div within kendo Window.

The said div contains selectable thumbnail, it will show a bigger version if clicked (functionality not included in the attached file)

The problem when there will be hundreds to thousands of images the scrolling in IE11 becomes almost unresponsive.

Attached sample have around a 1000.

Tested it with bootstrap modal, did not have any issue with scrolling in IE11.

Issue does not happen in other browsers, is this an issue with repaint and scroll in IE?

Completed
Last Updated: 23 May 2019 05:52 by ADMIN
Release 2019.R2
Created by: tan tan
Comments: 1
Category: Window
Type: Bug Report
0

I use Windows as a sliding pane. How do I make the window still the default size when the window is minimized and then restored?

https://dojo.telerik.com/iKoledUd