Unplanned
Last Updated: 28 Oct 2025 14:17 by Anthony
Created by: Anthony
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

When using the raw JavaScript files from the src\src\dist\raw-js folder (included directly via <script> tags), the Kendo UI version (kendo.version) always returns 0.0.0, and the package metadata in kendo.all.js has the version field hardcoded to 0.0.0.

Reproduction of the problem

1. Download Kendo UI for jQuery commercial distribution.
2. Use the files from the following path:
`src\src\dist\raw-js\`

3. Include kendo.all.js (and other scripts) directly in an HTML page using <script> tags.
4. Include a valid license key using:

`KendoLicensing.setScriptKey("your-license-key");`
5. Run the application and inspect the console.

Call: console.log(kendo.version);

Result: The version displayed is "0.0.0".

 

Current behavior

kendo.version returns "0.0.0".

_parsedPackageMetadata in kendo.all.js shows:

version: '0.0.0'


Expected/desired behavior

The kendo.version property should correctly reflect the actual build version (2025.3.1002 in this case).

The PACKAGE_METADATA placeholder should be replaced during the build or distribution process, even in the raw-js folder outputs.


Environment
Kendo UI version: 2025.3.1002
Browser: [all ]

Unplanned
Last Updated: 28 Oct 2025 11:05 by ADMIN

Please make the speech to text button/suffix of a kendo textarea available via mvvm. Also speech to text button to come standard as a tool in the kendo editor.

Unplanned
Last Updated: 24 Oct 2025 07:18 by ADMIN
Created by: FranckSix
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1

When I add a minimum or maximum value to the date picker, the control allows out-of-range dates to be entered until the dateInput option is set to true. At that point, any out-of-range date will be set to either "min" or "max." The change event will not be called for that change.

This would be perfect:

  • The default behavior is to set the minimum or maximum value when the date input value is out of range. It would be nice if this behavior didn't depend on the dateInput option.T
  • Trigger a change event when the control itself sets the minimum or maximum value.
  • Add an option to change the behavior to generate an error on the control when an out-of-range value is entered.
For me, it feels more natural to invalidate the control when an invalid date is entered. This allows me to block the form from being submitted. Setting it to "min" or "max" can bypass end-user oversight, potentially resulting in incorrect date submission.

Note: In some situations, the default behavior of setting it to "min" or "max" can also be useful... but with a change event trigger however!

Unplanned
Last Updated: 13 Oct 2025 06:35 by ADMIN

We have noticed a serious performance issue in the TreeList control which I have confirmed in the latest version in this Dojo: https://dojo.telerik.com/aNuKanAG.  This Dojo is a based on the TreeList in-cell editing demo from your website.

  1. Open the Dojo link I provided and Run it.
  2. Open your browser DevTools console so you can see console.log messages.
  3. Navigate to a leaf node of the tree if it isn't already open by default; ex: Daryl -> Guy -> Buffy -> Hyacinth
  4. Click in and out of an editable cell; ex: Ext
  5. Observe the DevTools console where you will see that the 'rendered XXX' text has been written for EVERY CELL in the entire tree.
  6. Expand/collapse the closest parent group
  7. Again, observe that EVERY CELL has been re-rendered

I was trying to figure out if there was any good reason for this.  In the Dojo above all data are nested under a single parent.  So, I created another Dojo but this time there are two  separate parent groups: https://dojo.telerik.com/OcEmAgIz.  This Dojo is based on the Binding to local data demo from your website.

  1. Open the Dojo link and Run it.
  2. Clear the DevTools console so you can see a clean display of results for the next action.
  3. Expand and collapse a child group of Daryl Sweeney.
  4. Observe the console log results: you will see that Dan Sweeney was also re-rendered.

The problem here is that these re-renders are very expensive.  Imagine if the call to console.log was instead something else that might need a bit of computation time to complete.

The simple act of expanding and collapsing a group from an unrelated part of the tree, or simply opening and closing an editable cell should not result in the entire tree being re-rendered.  This is a serious performance issue, and seems completely unnecessary.

 

What I have demonstrated in the Dojos I created is that Kendo is re-rendering the ENTIRE structure. The goal of this feature would be to rerender only the specific cells of the treelist that have been impacted by an edit. 


Unplanned
Last Updated: 07 Oct 2025 05:31 by Daniel
Created by: Carlos
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
6

Enhancement

Currently the dialog action buttons can not hold only icons, the API does not provide means to have a button with only an icon or an icon and text. Considering the aforementioned we should extend the API to allow adding of icons inside the action buttons.

Unplanned
Last Updated: 03 Oct 2025 14:42 by Oguz
Created by: Oguz
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
I need to create a form for entering data into a SharePoint LIST on-premises/cloud using the Kendo UI Form. this would be a good demo to have in your online demos as it show how to use an AJAX request to read/place data with the Kendo Form
Unplanned
Last Updated: 25 Sep 2025 09:10 by ADMIN
Created by: Anant
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

Currently, the Kendo UI RangeSlider provides a single-colored track (.k-slider-track) with a separate style applied only to the selected range. However, in many modern design requirements, there is a need to split the track into multiple colored sections (e.g., 3 or more segments with different colors) to visually represent thresholds, ranges, or categories.

Example Use Cases:

  • Displaying low, medium, and high ranges with green, yellow, and red colors.

  • Visualizing different risk or performance levels directly on the slider track.

  • Providing a better UI experience by mapping ranges to business values.

Requested Feature:
Add native support to configure multiple color segments within the RangeSlider track (either via configuration options or styling hooks). Ideally, developers should be able to specify:

  • Number of segments.

  • Color for each segment.

  • Segment boundaries (percentage or value-based).

Workarounds Tried:
Custom CSS overlays and pseudo-elements can partially simulate the effect, but they are not reliable or fully aligned with the slider’s rendering behavior.

Impact:
This feature would enhance usability and visualization, making the RangeSlider more flexible for dashboards, financial apps, performance monitoring, and other business-critical UI scenarios.

Reference:
Please find an attached image illustrating the requested multicolored track (example with 3 segments: green, yellow, and red).

 

Declined
Last Updated: 24 Sep 2025 13:55 by ADMIN

We have a column in our grid bound to a complex JSON object. When a different column's value is changed, we need to change the nested properties in the complex JSON object.

To do this, in the grid's Save event, we are calling model.set("theComplexObject.NestedProperty", newValue). However, doing this does not automatically update the UI for that row's cell. Furthermore, it never seems to mark the column dirty. Manually calling grid.refresh() will fix the issue, but the grid we are working on has a lot of columns and it adds a performance hit.

This approach works for all of our other columns that do NOT use complex objects. They correctly show the dirty flag and new model value after the save operation completes.

Below is a Dojo example with the save event wired up and a complex name column. It's worth mentioning that the dirty flag also doesn't appear to be working on the eye color column. This may be another bug introduced in a newer version of Kendo.

https://dojo.telerik.com/ZHkxwJee

  • Change the age for a column and click off the cell. The eyeColor updates, but the name does not. The dirty flag gets put in the first cell for some reason (this happens when updating the second row too... it adds the dirty flag to the first cell in the first row).
  • Enabling the currently commented line that does e.sender.refresh() will fix the display issues, but the dirty flag still doesn't show for the name column.
Unplanned
Last Updated: 23 Sep 2025 05:59 by ADMIN
Created by: Dominic
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1

We would like the ability to execute custom actions once a control has been fully initialized and rendered.

Use Case
On our login page, we use the Form control. After the Form control is created, we need to reposition our SSO buttons so that they appear beneath the default buttons rendered by the form. Without a reliable event, it is difficult to determine when the control is ready for safe modification.

Proposed Solution
Introduce a Created event (or similar) that is triggered once the control is fully rendered. This event would provide a hook for developers to perform additional UI adjustments or integrate custom functionality.

Reference
Syncfusion ASP.NET Core controls provide this functionality through a Created event.

Unplanned
Last Updated: 08 Sep 2025 14:22 by Lee
Created by: Danny
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
11
Slider seems to only output numbers, I want to use it for date ranges, ala mint.com.
Unplanned
Last Updated: 08 Sep 2025 12:36 by ADMIN
Created by: ecobite
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2

Hi Team,

I would like to request the source code from the AI Service from the Kendo UI Grid demos be available to download.  

Thank you!

  
Unplanned
Last Updated: 04 Sep 2025 13:53 by Andy F.
Created by: Andy F.
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

Currenlty, styles/font-icons/index.css has this line at the bottom:

/*# sourceMappingURL=index.css.map */

But the map file is not part of the distribution files, so it's causing the browser to throw an additional request for the map file.

Currenlty, the index.css.map is present in the node_modules/@progress/kendo-font-icons/dist/index.css :

Image

But is not part of the Kendo jQuery distribution.

Expected/desired behavior

The distribution should be revised and the map file should be copied.

Environment

  • Kendo UI version: 2025.3.825
  • Browser: [all ]
Unplanned
Last Updated: 26 Aug 2025 08:37 by ADMIN
Created by: Philip
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

When a pager control uses responsive mode, but renders initially as hidden, the control fails to render properly.

The control should render to the appropriate responsive mode regardless of whether the control is visible or not when it is initially rendered.

Completed
Last Updated: 25 Aug 2025 13:30 by ADMIN
Release 2025 Q4 (Nov)
Created by: SturmA
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
1

Bug Report

When building with NPM, the glob is mismatched. This is currently related to the source code build.

Reproduction

  1. Build with version 2025.2.702 in NPM.

Current behavior

Receiving the specific error message:
[!] SyntaxError: The requested module 'glob' does not provide an export named 'default'

Environment

  • Kendo UI version: 2025.2.702
  • jQuery version: All supported versions
  • Browser: all
Completed
Last Updated: 12 Aug 2025 14:53 by ADMIN
Created by: Andrew
Comments: 24
Category: Kendo UI for jQuery
Type: Feature Request
91
For example; similar to http://www.highcharts.com/stock/demo/arearange

Having area 'scatter' support, such as 'scatterArea', and 'scatterAreaRange', like the existing 'scatterLine', is also desirable.
Completed
Last Updated: 31 Jul 2025 10:28 by ADMIN
Release 2025 Q3 (Aug)

Hello

Starting from version 2025.2.520:
Kendo Grid with NumericTextBox cell editor and "navigatable: true" exit edit cell state on double click/hold to select number inside editor.
Earlier versions did not have this issue.

Scenario:

Inside cell with NumericTextBox editor trying to select value without exit from edit cell state.
On click cell, that already in edit mode, switch to read mode (NumericTextBox disappears) 

Desirable behavior:
Copy and paste to cell without exit and enter again in edit cell state.
Select all value without loosing editing cell state. 

Dojo

Completed
Last Updated: 18 Jul 2025 08:06 by ADMIN
Created by: Scott
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

The download functionality of the PDFViewer component and when downloading PDF using kendo.saveAs() method doesn't work on some iOS mobile devices.

Reproduction of the problem

  1. Open the PDFViewer demo or the PDF Export Demo
  2. Try to export the file to PDF on iOS device

Note: On some iOS devices the PDF is exported as expected, but on others, nothing happened.

Current behavior

Currently, on some iOS devices, the PDF is exported, on others, it is exported, but there is a warning "This form is not secure, are you sure you want to submit it". After approval, the file is downloaded. On some iOS devices after clicking the button to download the PDF file nothing happens.

Expected/desired behavior

It should be possible to download the PDF file on all iOS devices.

Environment

  • Kendo UI version: 2022.1.301
  • Browser: [iOS XX Safari]
Duplicated
Last Updated: 15 Jul 2025 07:49 by ADMIN
Created by: Karl
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

Views - Month - numberOfWeeks (set to 6 weeks), do not need to see previous or next month week.  Only show days of the selected month.

This is OK:

This is not, unnecessary week of Aug 03.  The extra week adds to a busy calendar clutter.

 

 

Need More Info
Last Updated: 07 Jul 2025 11:33 by ADMIN
Created by: eDAD
Comments: 4
Category: Kendo UI for jQuery
Type: Bug Report
1

Bug Title: Columns are not programmatically associated with their table headers.

Severity: Sev2 (High)

Test Environment:
OS Version: 22H2 (OS Build 25352.1)
URL: https://ppe.oneidentity.core.azure-test.net/
Edge Dev: Version 114.0.1807.6 (Official build) dev (64-bit)
Screen Reader: Narrator

Repro steps:
1.Open kendoSample (codepen.io)
2.Navigate through tables.


Actual Result:
Table header and their data are in different tables. Columns are not associated programmatically with their headers.

Expected Result:
Columns should be associated programmatically with their headers.

Need More Info
Last Updated: 07 Jul 2025 11:25 by ADMIN
Created by: eDAD
Comments: 3
Category: Kendo UI for jQuery
Type: Bug Report
0

Environment (OS, Application, Versions): 

OS Version: 22H2 (OS Build 25352.1)
Edge Dev: Version 121.0.2277.112 (Official build) (64-bit)

Third Party Name:   Kendo

Repro Steps: 

   1. Open https://codepen.io/oneID/pen/LYaGREP and turn on NVDA.
   2. Navigate to 'Populate' grid and activate it using enter key.
   3. Navigate to Expand button present under domain in Export to excel table.
   4. Observe if the screen reader is announcing correct role and name for the expand button or not.

Actual Results: 

Accessible name for the 'expand' button is not correct, Expand button is defined as link.

Expected Results:

Accessible name of 'expand' button should be sufficient for screen reader user. Accessible name should contain value available in domain as well.

Role should be defined as 'Button' as its behaving as button.

1 2 3 4 5 6