Unplanned
Last Updated: 01 Apr 2025 07:26 by ADMIN
Created by: Michael D
Comments: 1
Category: Diagram
Type: Bug Report
0

The documentation of the Kendo-UI Diagram widget specifies the following signature of the zoom method (as do the corresponding TS typings):

zoom(zoom: number, point: kendo.dataviz.diagram.Point): void;

However, the JS implementation looks like this:

zoom: function(zoom, options)

where options is an object that may contain a field called "point" of type kendo.dataviz.diagram.Point.

 

When using zoom as documented, it ignores the specified point. This DOJO demonstrates the behavior.

Unplanned
Last Updated: 31 Mar 2025 05:13 by ADMIN
Created by: Iryna
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

The same way it is possible to make the search case-insensitive by setting columns.filterable.ignoreCase to true, it would be great if there was a way to add a custom filter (e.g. make the search diacritics-insensitive, with a custom function or as part of provided functionality). Thanks in advance.

Unplanned
Last Updated: 27 Mar 2025 16:42 by Kamil
Created by: Kamil
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

I would like request adding automatic line breaks for Kendo UI Charts to help avoid lengthy labels.

Thanks!

Unplanned
Last Updated: 27 Mar 2025 08:45 by Paul

I need to get the output of a grid saving to pdf without sending the resulting PDF directly to the user. For example, a PDF export option "localexport: true" which would return the data to code instead of directly to the client.

Currently, the file data can be retrieved using the private _drawPDF method:

        var grid = $("#grid").data("kendoGrid");
        var progress = new $.Deferred();

        grid
          ._drawPDF(progress)
          .then((root) => {
            return kendo.drawing.exportPDF(root, grid.options.pdf);
          })
          .done((data) => {
            console.log(data);
          });

Example: https://dojo.telerik.com/rjEORuHy.

However, the approach does not work well in all scenarios for example, when there are multiple pages - https://dojo.telerik.com/iiifASYZ/2 

Thus, I would like to have a built -in method that will be suitable for all scenarios to generate and retreive the file data, without sending the file to the client.

Unplanned
Last Updated: 26 Mar 2025 16:34 by avi
Created by: avi
Comments: 0
Category: Grid
Type: Feature Request
1
Hi Team,

I would like to request a way to set the edit modes for different data operations.  For example, for Updating, use Inline and for Creating, use Popup.  

Thank you!
Unplanned
Last Updated: 25 Mar 2025 11:02 by Bradley

Bug report
Grid's loader gets lost in the scrollable area height is greater than the viewport height

Reproduction of the problem

Dojo: https://dojo.telerik.com/hqknEyYx/2

Run and click on Export to Excel button

Worakround: https://dojo.telerik.com/gSsYgQpZ

excelExport: function (e) {
          let gridHeight = $("#grid").height();
          if (gridHeight < 700) {
            $("div.k-loader-container-inner").addClass("smallHeight");
            
          } else {
            $("div.k-loader-container-inner").addClass("biggerHeight");
          }
        }
...
<style>
        div.loaderPosition {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }
      div.biggerHeight {
        position: absolute;
          top: 50vh;
          left: 50%;
          transform: translate(-50%, -50%);
      }
    </style>

Environment
Kendo UI version: [all[
jQuery version: 3.4.1
Browser: [all]

Unplanned
Last Updated: 25 Mar 2025 08:30 by Alex
Created by: Alex
Comments: 0
Category: Toolbar
Type: Bug Report
0

Bug report

When there's a DropDownList in the Toolbar's oveflow, clicking to open the DropDownList closes the overflow popup.

Regression introduced with 2023.1.117

Note: As of 2023.1.117, the DropDownList is no longer overflowing, despite overflow: "always". As of 2023.1.425 the DropDownList is again displayed in the overflow, and can no longer be opened.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/mJFCLzOS/8
  2. Click on the overflow menu, and try to open the DropDownList

Current behavior

The overflow popup closes

Expected/desired behavior

The overflow popup should remain open so that you can interact with the DropDownList

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Unplanned
Last Updated: 24 Mar 2025 15:41 by Ephraïm
Created by: Ephraïm
Comments: 0
Category: Chart
Type: Bug Report
0

Bug report 

Donut Chart Overlay looks different after Q2 2024 

Before Q2 2024 

After Q2 2024 


Reproduction of the problem

Dojo demo: https://dojo.telerik.com/GHWBFuzv


Environment
Kendo UI version: 2024.2.514 or newer
Browser: [all]

Unplanned
Last Updated: 24 Mar 2025 11:04 by ChenCheng

Bug report

In the DropDownList component with filtering, opening the dropdown on a mobile device and attempting to type in the search field causes the popup to close immediately.

Regression introduced with 2025.1.211

Reproduction of the problem

  1. Open the Dojo link: Telerik Dojo on a mobile device or use mobile emulation in a browser.
  2. Click on the DropDownList to expand the options.
  3. Tap inside the search field to start typing.

Current behavior

The DropDownList popup closes immediately when tapping the search field on a mobile device.

Expected/desired behavior

The DropDownList popup should remain open when tapping the search field on a mobile device, allowing users to enter text and filter options.

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Unplanned
Last Updated: 17 Mar 2025 12:26 by ADMIN
Created by: Peter
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
0
Enable a grid to be setup so that the arrow up/down keys move the selected row up/down
Unplanned
Last Updated: 14 Mar 2025 08:17 by Scott Hannon

Bug report

In a Spreadsheet that has a scrollable Sheetbar, clicking the arrow icons to scroll the sheets refreshes the page.

Regression introduced with 2024.4.1112

Workaround - https://dojo.telerik.com/IVcuYtjD/5

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/ZXBKGnNe
  2. Click on the arrow buttons to scroll the sheets

Current behavior

The page refreshes

Expected behavior

The page shouldn't refresh

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Unplanned
Last Updated: 13 Mar 2025 11:54 by Laurent

Bug report

In a scenario where a Validator is created with validateOnBlur:false, and is used to validate a NumericTextBox, if the component is focused and blurred after validation, the k-invalid class is removed.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/lJzoPddG/3
  2. Click the button to validate the fields.
  3. Focus and blur the NumericTextBox

Current behavior

The k-invalid class, and the styles associated with it, are removed

Expected behavior

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Unplanned
Last Updated: 12 Mar 2025 07:07 by ADMIN
Created by: Monica
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1

It will be really useful if we could include a new 'filtering mode' in which operators like 'and' or 'or' are allowed in the filtering input box.

For instance, using the "doesnotcontain" with 'march or july or september' will allow users to exclude multiple conditions in a single filter

 

 

 

Unplanned
Last Updated: 11 Mar 2025 14:10 by Anthony Gianino
Created by: Anthony Gianino
Comments: 0
Category: Menu
Type: Bug Report
0

Bug report

Scrollable menu opening wrong menu on mobile

Reproduction of the problem

This is reproducible in Chrome developer tools - using iPhone 14 Pro Max

Dojo: https://runner.telerik.io/fullscreen/jtDsGBpV

1. Scroll a little to the right to have Ladies partially hidden

2. Click on Ladies

3. Notice that the ladies is focused and scrolled to be fully visible but the opened submenu is Mens

Environment

jQuery: 3.4.1

Kendo UI version: 2025.1.227
Browser: [all]

Unplanned
Last Updated: 10 Mar 2025 12:23 by Sumit

Bug report

When there is a filter applied in Excel file and the file is imported in the Spreadsheet only the first row is visible. The issue occur when the filtered column is a numeric column.

Reproduction of the problem

  1. Open the Demos - https://demos.telerik.com/kendo-ui/spreadsheet/index
  2. Import the file

Book1.xlsx

Current behavior

Only the filter row is visible. The filter result data rows are hidden:

Image

Expected/desired behavior

All rows with filtered results should be visible. Example:

Image

The issue is a regression starting with 2024.4.1112 release

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all ]
Unplanned
Last Updated: 10 Mar 2025 08:07 by Gal

Bug report

In the TimeDurationPicker, if the columns format is configured as ##, when the user types a value - the result will be incorrect.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/CmVDhocz/2
  2. Try typing 11:11:11 in the input

Current behavior

Incorrect value in the input

Expected Behaviour

The value of the input should be 11:11:11

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Unplanned
Last Updated: 04 Mar 2025 20:29 by Jenifer
Created by: Flavien
Comments: 1
Category: TextBox
Type: Feature Request
3

Enhancement

Expose autocomplete attribute for Kendo TextBox

Overview

Upon initializing the Kendo UI TextBox, the autocomplete attribute is initially set to off.

Image

While this is suggested on MDN in most scenarios, there are use-cases where it is necessary to set autocomplete to new-password to avoid auto-filling.

Desired Behavior

Extend the API to allow setting the autocomplete attribute. This could be done in a similar way as the inputMode configuration.

Workaround

Use jQuery attr method to set the item in the Ready event

   $(function(){
     $('#textBox').attr('autocomplete', 'new-password');
   });
Unplanned
Last Updated: 03 Mar 2025 08:22 by ADMIN

In my application, I have grids with dozens of hidden fields. 

 

 

It would be beneficial if I could filter the available columns similar to what's available in the Windows Forms column chooser:

Unplanned
Last Updated: 26 Feb 2025 14:36 by Faraz

Bug report

Data validation should not require DATEVALUE("") in Start and End inputs when `Date` is selected

Reproduction of the problem

https://demos.telerik.com/kendo-ui/spreadsheet/index

1. Select an empty cell
2. Click Data validation
3. Set Start: DATEVALUE("1/1/2024") and End: DATEVALUE("2/2/2025")
4. Automatic Hint message looks like: between DATEVALUE("1/1/2024") and End: DATEVALUE("2/2/2025")

Expected
Generated hint message shall not contain DATEVALUE("")


Environment
**Kendo UI version: [all]
**Browser: [all]

Unplanned
Last Updated: 26 Feb 2025 08:08 by Peter

Bug report

Reordering using clickMoveClick in the Grid is very inconsistent.

Reproduction of the problem

  1. Open the Drag and Drop Grid demo - https://demos.telerik.com/kendo-ui/grid/drag-drop
  2. Try reordering a row using click-move-click

Current behavior

The targeted row is not being reordered

Expected behavior

The targeted row should be reordered

Environment

  • Kendo UI version: 2025.1.211
  • Browser: [all]
1 2 3 4 5 6