Need More Info
Last Updated: 01 Apr 2025 09:45 by ADMIN

Example: https://runner.telerik.io/fullscreen/yypoqSea

This example is based on the example from the docs with `navigatable: true` and enough data that the user needs to scroll in order to see the bottom row.

On Chrome on macOS, the filter menu cannot be used when `navigatable: true` and "Tap to click" is enabled in the macOS Trackpad settings. When clicking on the filter icon, the menu disappears very quickly (see screen recording). As a workaround, setting `navigatable` to false seems to resolve the problem. The same issue does not seem to occur on Safari, however, there is still odd behavior with the scrolling.

For some reason, screen size, resolution, and window settings impact the ability to reproduce the issue. The most reliable way for me to reproduce the issue was with Chrome in full screen on a 16-inch MacBook (13-inch works too) with the bookmarks bar showing and no external displays connected. Hiding the bookmarks bar or not using full screen seems to make it more difficult to reproduce.

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: 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]

In Development
Last Updated: 24 Mar 2025 12:13 by ADMIN
Scheduled for 2025 Q2 (May)

Bug report

When the DropDownList component is configured with Adaptive Mode and Filtering, opening the dropdown on a mobile device and attempting to type in the search field causes the popup to close immediately.

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

With Adaptive Mode and Filtering enabled, 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.

TicketID:

1678876

Environment

  • Kendo UI version: 2025.1.211
  • 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]
Planned
Last Updated: 18 Mar 2025 07:53 by ADMIN
Scheduled for 2025 Q2 (May)

Bug report

When there are multiple Forms on the same page, submiting one of the Forms triggers the other Forms validation.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/rkDeetHu
  2. Click the 'Submit' button on the second Form.

Current behavior

The first Form is also validated and the field is marked as invalid.

Expected/desired behavior

Only the Form which button has been clicked have to be validated.

The issue is a regression starting with 2025.1.211 version

Environment

  • Kendo UI version: 2025.1.211
  • Browser: [all]
Need More Info
Last Updated: 17 Mar 2025 07:20 by ADMIN
Created by: K
Comments: 3
Category: Date/Time Pickers
Type: Bug Report
0

Kendo UI core lists several controls that are available in the library, but there is no mention that they are not actively maintained on main repository readme.

Several controls were obsoleted/unsupported in this commit - https://github.com/telerik/kendo-ui-core/commit/db16f60ee6ee43506173a9628723b3de1ed73266, but they are still listed in https://github.com/telerik/kendo-ui-core/blob/master/README.md or promotional graphics.

Please clarify its current/future status.

 

Best regards

K

 

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]
Completed
Last Updated: 12 Mar 2025 14:27 by ADMIN
Created by: Stu
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

there is no binding for noData

e.g.

        noData?: boolean | undefined;

    interface ChartOptions {
        name?: string | undefined;
        autoBind?: boolean | undefined;
        axisDefaults?: ChartAxisDefaults | undefined;
        categoryAxis?: ChartCategoryAxisItem | ChartCategoryAxisItem[] | undefined;
        chartArea?: ChartChartArea | undefined;
        dataSource?: any|any|kendo.data.DataSource | undefined;
        legend?: ChartLegend | undefined;
        panes?: ChartPane[] | undefined;
        pannable?: boolean | ChartPannable | undefined;
        pdf?: ChartPdf | undefined;
        persistSeriesVisibility?: boolean | undefined;
        plotArea?: ChartPlotArea | undefined;
        renderAs?: string | undefined;
        series?: ChartSeriesItem[] | undefined;
        seriesColors?: any;
        seriesDefaults?: ChartSeriesDefaults | undefined;
        theme?: string | undefined;
        subtitle?: string | ChartSubtitle | undefined;
        title?: string | ChartTitle | undefined;
        tooltip?: ChartTooltip | undefined;
        transitions?: boolean | undefined;
        valueAxis?: ChartValueAxisItem | ChartValueAxisItem[] | undefined;
        xAxis?: ChartXAxisItem | ChartXAxisItem[] | undefined;
        yAxis?: ChartYAxisItem | ChartYAxisItem[] | undefined;
        zoomable?: boolean | ChartZoomable | undefined;
        axisLabelClick?(e: ChartAxisLabelClickEvent): void;
        dataBound?(e: ChartDataBoundEvent): void;
        drag?(e: ChartDragEvent): void;
        dragEnd?(e: ChartDragEndEvent): void;
        dragStart?(e: ChartDragStartEvent): void;
        legendItemClick?(e: ChartLegendItemClickEvent): void;
        legendItemHover?(e: ChartLegendItemHoverEvent): void;
        legendItemLeave?(e: ChartLegendItemLeaveEvent): void;
        noteClick?(e: ChartNoteClickEvent): void;
        noteHover?(e: ChartNoteHoverEvent): void;
        noteLeave?(e: ChartNoteLeaveEvent): void;
        paneRender?(e: ChartPaneRenderEvent): void;
        plotAreaClick?(e: ChartPlotAreaClickEvent): void;
        plotAreaHover?(e: ChartPlotAreaHoverEvent): void;
        plotAreaLeave?(e: ChartPlotAreaLeaveEvent): void;
        render?(e: ChartRenderEvent): void;
        select?(e: ChartSelectEvent): void;
        selectEnd?(e: ChartSelectEndEvent): void;
        selectStart?(e: ChartSelectStartEvent): void;
        seriesClick?(e: ChartSeriesClickEvent): void;
        seriesHover?(e: ChartSeriesHoverEvent): void;
        seriesOver?(e: ChartSeriesOverEvent): void;
        seriesLeave?(e: ChartSeriesLeaveEvent): void;
        zoom?(e: ChartZoomEvent): void;
        zoomEnd?(e: ChartZoomEndEvent): void;
        zoomStart?(e: ChartZoomStartEvent): void;
    }

 

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]
Completed
Last Updated: 04 Mar 2025 15:16 by ADMIN
Release 2025 Q2 (May)

Bug report

Currently, if you focus the command buttons, pressing tab will navigate to the buttons on the next row.

Reproduction of the problem

  1. Open this dojo example - https://dojo.telerik.com/lmIJIUCH/2
  2. Click on the cell containing the command buttons on the first row
  3. Press enter to focus the Edit button
  4. Press tab multiple times.

Current behavior

The focus will move to the buttons on the next row.

Expected/desired behavior

When the focus is on the Delete button, pressing Tab should return the focus to the current cell so that you can navigate to the remaining cells on the same row.

Environment

  • Kendo UI version: 2024.3.1015
  • Browser: [all]
Planned
Last Updated: 04 Mar 2025 14:29 by ADMIN
Scheduled for 2025 Q2 (May)
Created by: Ignacia
Comments: 0
Category: Chart
Type: Bug Report
0

Bug report

Pie and Donut Chart can not be exported to PDF, Png or Jpg

Reproduction of the problem

  1. Open the demos - https://demos.telerik.com/kendo-ui/pdf-export/index or the Dojo - https://dojo.telerik.com/LfDhdqXf
  2. Try to export the Chart in any format

Current behavior

The pie and donut charts are missing.

Expected/desired behavior

The Charts should be exported to the selected file format

The issue is a regression starting with 2024.4.1112

Environment

  • Kendo UI version: 2024.4.1112
  • Browser: [all]
Completed
Last Updated: 04 Mar 2025 09:23 by ADMIN
Release 2025 Q2 (May)

Steps to reproduce the problem:

Have a grid with:

  • specified width (e.g: 1000)
  • column virtualization
  • multiple columns with a width of 100, but most of them hidden in initial state (e.g.: 50 total, but only 8 shown)
  • columnMenu true
  • resizable true

When running the code that create the grid, the initial state looks like this:

Current behavior:

The header columns are filling the width of the grid (each bigger than the specified 100), but the rows columns cells have the specified width of 100, causing a misalignment.

However, changing the width of a column with the resize handle fixes all the widths (header + rows). 
Same thing for adding/removing a column from the menu.

See the attached video for an example.

If in the initial state there are more shown columns so they can fill the grid width (and have the horizontal scrollbar), the issue is not present.

Expected behavior:

Rows columns should always match the width of the header.

Dojo example:

Here's an example, based on the one from https://demos.telerik.com/kendo-ui/grid/column-virtualization 

https://dojo.telerik.com/@pgarand/UfEkIGiD

 

Completed
Last Updated: 04 Mar 2025 09:00 by ADMIN
Release 2025 Q2 (May)

Bug report

The icons for 'Move previous' and 'Move next' in the 'Set Column Position' ColumnMenu item in RTL Grid are not correct.

Reproduction of the problem

  1. Open the Dojo example - https://dojo.telerik.com/arOKEreq
  2. Open the column menu of a random column.
  3. Expand the 'Set Column Position' item.

Current behavior

The previous and next icons do not correspond to the correct direction.

Expected/desired behavior

The positions of the previous and next icons should be switched.

Environment

  • Kendo UI version: 2023.2.718
  • Browser: [all]
In Development
Last Updated: 04 Mar 2025 08:32 by ADMIN
Scheduled for 2025 Q2 (May)

Describe the bug
When the user selects a word and changes its style (for example bold, italic, etc.) the content of the inline Editor is wrapped on multiple lines.

To reproduce
Steps to reproduce the behavior:

  1. Go to Dojo - https://dojo.telerik.com/JNAQLLsy
  2. Select a word in the editor and change its style from the tools.

Expected behavior
The content should not wrap.

Screenshots
image

Workaround

<style>
      .k-editor{
        display: block
      }
</style>

Dojo - https://dojo.telerik.com/iZZPZIGg

Regression since 2022.1.119

Affected package (please remove the unneeded items)

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

Affected suites (please remove the unneeded items)

  • Kendo UI for jQuery

Affected browsers (please remove the unneeded items)

  • All
1 2 3 4 5 6