Unplanned
Last Updated: 25 Jul 2023 08:01 by Mugurel
I think it will be useful, not only for me, to have a sample added to the demo section (https://demos.telerik.com/aspnet-mvc/window) for using the new Template component within a window instance.
Completed
Last Updated: 19 Jan 2023 13:57 by ADMIN
Created by: Julius
Comments: 1
Category: Window
Type: Bug Report
0

I have discovered a bug in Kendo UI that seems to only affect IE11. 

When you create a Window with a position and width that renders partially off screen, IE11 will scroll the body to show as much of the window as possible.

Worse still, it seems to scroll to the last Kendo Window that was created.

This is undesirable. Is there a known workaround, or fix for this?

You can see it in this dojo if you shrink IE11 to be smaller than the window is wide:

https://dojo.telerik.com/iBiFatAT

See attached.

 

Thanks,

Julius

Unplanned
Last Updated: 12 Jul 2021 14:33 by ADMIN
Created by: Richard
Comments: 0
Category: Window
Type: Feature Request
1
Add an option to pass request headers when refreshing the Window.
Unplanned
Last Updated: 13 Jan 2021 08:36 by ADMIN
Created by: Peter
Comments: 1
Category: Window
Type: Bug Report
0

Hello,

I'd like to report a problem with the window component. It's only related to Google Chrome and occurred after the last Chrome update. Windows and Mac alike.

When dragging a non-modal window it does not move smoothly, but in a jerking manner. There is no problem with modal windows.

I've enclosed a screen video. The first windows is moving perfectly, the second erratically. Of course, this is not a major issue, but the client still complains.

This is the configuration. .Draggable(true) does not change the behavior.
@(Html.Kendo().Window()
      .Deferred()
      .Name("insert-products-window")
      .Title("Placering produktdokument")
      .LoadContentFrom("LoadInsertProductsDialog", "Catalog")
      .Events(e => e.Error("utilities.handleWindowError"))
      .Events(e => e.Close("insertProducts.onClose"))
      .Events(e => e.Activate("insertProducts.wireToolbarEvents"))
      .HtmlAttributes(new {style = "padding: 0;"})
      .Scrollable(false)
      .Draggable(d => d.Containment(Model.IsPhone ? "" : ".body-content"))
      .Modal(false)
      .Width(Model.IsPhone ? 0 : 700)
      .Height(Model.IsPhone ? 0 : 450)
      .Resizable(r => r.MinWidth(300))
      .Resizable(r => r.MinHeight(260))
      .Visible(false)
      .Actions(a => a.Custom("help").Minimize().Close())
      )

Completed
Last Updated: 16 Oct 2020 08:36 by ADMIN
Release 2020.R3.SP.next

Bug report

Reproduction of the problem

Dojo example.

  1. Click the button to apply new position to the Window

Current behavior

The Window is positioned in the top left corner of its container

If top and left position values are set in pixels instead of percent, positioning works as expected.

Expected/desired behavior

The Window is positioned according to the specified top and left values.

Environment

  • Kendo UI version: 2020.3.915
  • jQuery version: x.y
  • Browser: [all]