Completed
Last Updated: 24 Jun 2024 13:10 by ADMIN
Release 2024 Q3 (Aug)
Created by: Lewis
Comments: 0
Category: Window
Type: Bug Report
0

Bug report

The Window themeColor configuration does not change the appearance of the component.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/igOpetAW

Current behavior.

The Window colors are not changed.

Expected/desired behavior

The component appearance should be changed based on the configured value in themeColor.

Workaround

<style>
      .k-window-titlebar {
        color: var(--kendo-color-on-dark, #ffffff);
        background-color: var(--kendo-color-dark, #3d3d3d);
      }
</style>

Or

 $('.k-window').addClass('k-window-dark')

Environment

  • Kendo UI version: 2024.2.514
  • jQuery version: x.y
  • Browser: [all ]
Completed
Last Updated: 29 Mar 2024 07:38 by ADMIN
Release 2024 Q2 (May)

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]
1 2