Completed
Last Updated: 18 May 2021 13:12 by ADMIN
Release 2021.R2.SP.next

Bug report

When a custom class attribute is set via the columns.attributes option, the TreeList renders an additional class that is undefined.

Reproduction of the problem

1. Initialize a TreeList.

2. Set a custom class via the attributes option:

3. Inspect the relevant "td" element

Dojo sample for reproduction:

https://dojo.telerik.com/IqApoGOz

Expected/desired behavior

The TreeList should render only the specified classes.

Environment

* **Kendo UI version:** 2019.3.1023
* **jQuery version:** 1.12.4
* **Browser:** [all] 

Completed
Last Updated: 27 Sep 2023 10:44 by ADMIN
Created by: David
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
3

When an object is passed to an iframe method and kendo.observable is called on it, an error is thrown.  This error is new in the latest kendo releases and appears to be from a change to how kendo decides if something is an object.  Kendo now uses   { Object.getPrototypeOf(value) === Object.getPrototypeOf({})) } which it did not do in prior releases.  This test fails when the object tested is passed in from another frame.

You can repo this issue on the test site we setup:   Kendo UI Snippet (sixdisciplines.com)

Click the 'Call IFrame' button and notice the following error thrown:

    Uncaught TypeError: e.bind is not a function
    at init.wrap (kendo.all.js:318535:21)
    at kendo.all.js:318535:21
    at Array.forEach (<anonymous>)
    at new init (kendo.all.js:318535:21)
    at n.observable (kendo.all.js:318535:21)
    at iframeMethod (iframetest.html?5:14:25)
    at callIFrame (test.html:17:55)
    at HTMLButtonElement.onclick (test.html:21:34)

Following is the source used for this repo. I have also attached the html files.

Test.html:

      

<html>
<head>
    <meta charset="utf-8"/>
    <title>Kendo UI Snippet</title>

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/6.2.0/default/default-ocean-blue.css"/>

    <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2023.1.314/js/kendo.all.min.js"></script>
</head>
<body>

<script>

  function callIFrame(){
debugger;

        var obj = new Object({ p1: 1, p2: 2, child: new Object({ c1: 1, c2: 2 }) });
document.getElementById('targetFrame').contentWindow.iframeMethod(obj);
  }

</script>
  <button onclick="callIFrame()">Call IFrame</button>

 <iframe id='targetFrame' src='iframetest.html?5'></iframe>
</body>   
</html>

iframetest.html

<html>
<head>
    <meta charset="utf-8"/>
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/6.2.0/default/default-ocean-blue.css"/>

    <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2023.1.314/js/kendo.all.min.js"></script>
</head>
<body>

<script>  
 function iframeMethod(obj){
debugger;
var observable = kendo.observable(obj);
alert('called')
 }
</script> 
IFrame with kendo 
</body>   
</html> 

  
Completed
Last Updated: 05 Aug 2019 11:11 by ADMIN
Release 2019.R3
Created by: Eduard Töws
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
3

Bug report

An error occurs on components' initialization when using a custom Kendo UI build which includes PDFviewer

Reproduction of the problem

  1. Go to Kendo UI Custom Download page
  2. In the "WEB" section select random components including the Grid and PDFviewer
  3. Download the custom build(kendo.custom.min.js file) and put it in the same folder with an HTML file with the following structure.
<!DOCTYPE html>
<html>

<head>
    <style>
        html {
            font-size: 14px;
            font-family: Arial, Helvetica, sans-serif;
        }
    </style>
    <title></title>
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2019.2.514/styles/kendo.default-v2.min.css" />

    <script src="https://kendo.cdn.telerik.com/2019.2.514/js/jquery.min.js"></script>
    <script src="./kendo.custom.min.js"></script>
</head>

<body>
    <div id="example">
        <div id="grid"></div>
        <script>
            $(document).ready(function () {
                $("#grid").kendoGrid({
                    dataSource: {
                        type: "odata",
                        transport: {
                            read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Customers"
                        },
                        pageSize: 20
                    },
                    height: 550,
                    groupable: true,
                    sortable: true,
                    pageable: {
                        refresh: true,
                        pageSizes: true,
                        buttonCount: 5
                    },
                    columns: [{
                        template: "<div class='customer-name'>#: ContactName #</div>",
                        field: "ContactName",
                        title: "Contact Name",
                        width: 240
                    }, {
                        field: "ContactTitle",
                        title: "Contact Title"
                    }, {
                        field: "CompanyName",
                        title: "Company Name"
                    }, {
                        field: "Country",
                        width: 150
                    }]
                });
            });
        </script>
    </div>
</body>
</html>
  1. The following error appears:
    Uncaught TypeError: Cannot read property 'Toolbar' of undefined

Current behavior

grid_pdf

Expected/desired behavior

A Grid should be initialized properly and without errors if a custom build is including the PDFviewer

Environment

  • Kendo UI version: 2019.2.514
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 08 Dec 2023 12:16 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)
Created by: Daewoong
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
3

Describe the bug
Once the Tooltip is shown for a target with short title, if opened for a target with longer title, its width is not updated properly. The shortest width is persisted. Reproducible in all SASS themes, not reproducible in the LESS themes.

To reproduce
Steps to reproduce the behavior:

  1. Go to dojo.
  2. Hover "Korean"
  3. Hover "Korean short"
  4. Hover "Korean" again

Expected behavior
The Tooltip should resize properly to fit the title of the element it is shown for.

Screenshots

Affected package (please provide)

  • theme-default
  • theme-bootstrap
  • theme-material

Affected suites (please provide)

  • Kendo UI for jQuery
  • Kendo UI for Vue

Affected browsers (please provide)

  • Firefox: [latest]
  • Chrome: [latest]
  • Edge version: [latest]
  • IE version: [11]

Build system information (please provide)

  • OS: [Windows]

Additional context
N/A

Completed
Last Updated: 02 Feb 2021 16:55 by ADMIN
Created by: Rahini
Comments: 3
Category: Kendo UI for jQuery
Type: Bug Report
2

Hi Team,

 

Sorry for the confusion. I don't know where to post this content issue I saw in your website.

Have a nice day :)

 

Completed
Last Updated: 08 Mar 2019 15:21 by ADMIN
Created by: DDL
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
2

When a ContextMenu is opened for the first time, the animation is not executed. Every consequent open trigger the animation successfully.

The issue can be observed in the following Dojo.

Steps to reproduce:

  • Open the ContextMenu and notice there is no animation.
  • Open the ContextMenu again and notice the default animation is triggered.

Completed
Last Updated: 09 Jun 2021 11:32 by ADMIN
Release 2021.R2.SP.next
Created by: Serviceuser
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
2

Bug report

The declaration in the jQuery interface (kendo.all.d.ts) is missing:

kendoBadge(): JQuery;
 kendoBadge(options: kendo.ui.BadgeOptions): JQuery;
 data(key: "kendoBadge"): kendo.ui.Badge

Reproduction of the problem

Current behavior

Expected/desired behavior

Environment

  • Kendo UI version: 2020.3.1021
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 18 Feb 2022 13:36 by ADMIN
Release 2022.R1.SP.next

Bug report
Window modal overlay missing when using KendoWindow that has the following configuration fo window1
{

modal: true,

draggable: {containment: "body"}

}

I aware that there is this forum talking about this issue, but the example is opeining both window without draggable.containment configuration.

The current easist workaround is dont set draggable.containment for window1

Reproduction of the problem
1. Run this dojo

2. Open window1, then open window2, close window2

3. The modal overlay for window1 dissapeared


Current behavior
When window1 has configuration for draggable.contaiment, its modal overlay will dissapear after window2 closed

Expected/desired behavior
The modal overlay for window1 should remain, closing window2 should not affect window1's modal overlay

Environment
Kendo UI version: 2021.2.616
jQuery version: 3.4.1
Browser: all

Completed
Last Updated: 15 Feb 2024 12:25 by ADMIN
Created by: eDAD
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
1

Bug Title: Filter controls are not accessible via keyboard under 'Security Groups and Service Accounts' screen.

Severity: Sev1 (Critical)

Test Environment: OS: Windows 11 22H2
OS Build: 23620.1000

Repro steps:
1.Open https://codepen.io/oneID/pen/LYaGREP
2.Activate populate grid.
3.Try navigating to Column filter controls using keyboard.
4.Observe whether filter controls are accessible via keyboard under 'Security Groups and Service Accounts' screen or not.

Actual Result:
Keyboard focus does not remain on same control after pressing 'ESC' key to close the opened ‘Filter’ popup present under 'Security Group' screen.

Expected Result:
Keyboard focus should remain on same control after pressing 'ESC' key to close the opened ‘Filter’ popup present under 'Security Group' screen.

Completed
Last Updated: 16 Apr 2019 09:55 by ADMIN
Created by: Reqs
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
1

Video: https://www.youtube.com/watch?v=8pnFjgzdaJ8&feature=youtu.be

1. Navigate to: https://dojo.telerik.com/@milena/uZaGuZol (open the dojo sample in edit mode, but not in FullScreen)

2. Scroll Grid to the last item.

3. Open for editing ProductName cell.

4. Open for editing Discontinued cell.

Result: 'Discontinued' cell of the second item will be opened for editing.

Expected: 'Discontinued' cell of the last item should be opened for editing.

Completed
Last Updated: 12 Jun 2023 11:43 by ADMIN
Release R3.2023-Increment.1(19.July.2023)
Created by: Jake
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
1

Bug report

When a validation error message appears for the Kendo UI RadioGroup and CheckBoxGroup, the message appears after the first selectable button.

Reproduction of the problem

  1. Visit the following Kendo UI Form Live Demo.
  2. Clear the selection, then submit.

Current behavior

image

Expected/desired behavior

The validation message should be placed after the last input of the RadioGroup/CheckBoxGroup.

Environment

  • Kendo UI version: 2023.1.314
  • jQuery version: All Supported versions
  • Browser: all
Completed
Last Updated: 26 Jan 2021 14:32 by ADMIN
Release 2021.R1.SP.next

If the delete rows button is used on a table that is followed by another table, and all the rows from the first one are deleted, the next table receives focus. Upon clicking the delete row button again, an error is being thrown "Cannot read property 'rows' of undefined".

The issue can be reproduced with the Basic Usage Demo::

  • create a table
  • create a table immediately following the first
  • focus the last row of the first table and click the 'Delete row' button until all rows are deleted.
  • Click the 'Delete row' button again.

Completed
Last Updated: 26 Jul 2023 10:55 by ADMIN
Release R3.2023-Increment.2(30.Aug.2023)

Hi,

If Kendo grid column has enumerated values, menu filter extra condition values is not populated.

Please, see example code in dojo at https://dojo.telerik.com/oXIwobEh

Thank you.

Completed
Last Updated: 09 Oct 2022 10:35 by ADMIN
Created by: Samir
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
1

Bug report

The workbook exporting to Excel generates a corrupted file when the name of some of its sheets contains a "cell-related" value - for example, "A1", "G5", "F45", etc.

Reproduction of the problem

  1. Open this Dojo project and run it
  2. Save the exported Excel file and open it.

Current behavior

When the saved file is opened in Excel, a "corrupted file" warning appears on the screen.

Expected/desired behavior

There shouldn't be any warnings when opening a saved workbook

Environment

  • Kendo UI version: 2019.3.1023
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 28 Jan 2022 10:20 by ADMIN
Release 2022.R1.SP.next

Bug report

When a culture that uses a "comma" as a decimal separator is applied to the Kendo UI NumericTextBox, the value of the aria-valuenow attribute uses the value without transforming the "," separator into a "." separator.

Reproduction of the problem

Set a culture that utilizes the comma as a decimal separator. Notice the aria-valuenow attribute's value:

https://dojo.telerik.com/okoJIRID

Environment

* **Kendo UI version:** 2020.2.617
* **jQuery version:** 1.12.4
* **Browser:** [all] 

Completed
Last Updated: 14 Oct 2022 11:11 by ADMIN
Release R1.2023-Increment.1(09.Nov.2022)
Created by: Maggie
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
1

Bug report

When the WebPack 4 is used with Kendo version 2022.2.802 the following error is thrown in the console:

webpack_modules[moduleId] is not a function

Reproduction of the problem

  1. Open the attached sample project
    webpack-demo-wb4.zip

  2. Run 'npm install' and 'npm start' and check the browser console.

Current behavior

An error: webpack_modules[moduleId] is not a function is thrown .

Note: The latest Kendo version can be used without any issues with WebPack 5.

Expected/desired behavior

There should be no error and the app should run without any issues with Kendo version 2022.2.802 and WebPack 4

Environment

  • Kendo UI version: 2022.2.802
  • Browser: [all ]
Completed
Last Updated: 04 Apr 2023 07:11 by ADMIN
Release 2020.R3.SP1

Describe the bug
The TextArea has 14 px font-size and the other inputs have 100% font-size.

Reported in: 1486377

To reproduce
https://dojo.telerik.com/iLeZIpEz

  1. Use the LESS-based theme.
  2. Implement a TextArea component.
  3. Implement a TextBox component.

Expected behavior
The font-sizes for the TextArea and the TextBox have to be equal.

Environment

  • Kendo UI version: 2020.3.915
  • Browser: [all]
Completed
Last Updated: 23 Feb 2024 09:30 by ADMIN

Bug report

Files are missing when trying to generate a script file for CircularProgressBar only through the Custom Download Tool.

Reproduction of the problem

  1. Open the custom download tool - https://www.telerik.com/download/custom-download
  2. Select CircularProgressBar

Current behavior

There are missing files in the exported custom file.

Expected/desired behavior

All necessary files should be included in the custom script file.

Environment

  • Kendo UI version: 2022.2.621
  • Browser: [all]
Completed
Last Updated: 18 Feb 2021 16:02 by ADMIN
Release 2021.R1.SP.next
In the datepicker popup with the component type modern the "Today" text link is enabled even if today's date is disabled.
Completed
Last Updated: 25 May 2022 09:53 by ADMIN
Release 2022.R2.SP.next
Created by: Alex
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
1

Hi,

I would like to report a bug with Spreadsheet control. The problem is when trying to import from JSON data into a specific sheet and there are more than 200 rows for import.

If number of rows to import is up to 200, it works correctly, but if number of rows is 201 or more, import is not correct - data starts to import into new columns.

See this simple reproduction: https://dojo.telerik.com/IFuxijEZ/2


 

1 2 3