Unplanned
Last Updated: 14 Aug 2026 08:54 by ADMIN

The `WorkWeekView` and `DayView` components only support displaying a continuous range of days, defined by `workWeekStart` and `workWeekEnd` (or `numberOfDays`). There is no way to specify an arbitrary set of non-consecutive weekdays (e.g., Monday, Wednesday, and Saturday) and render them as side-by-side columns in a single view.

Customers who operate on non-standard schedules — such as shift workers, part-time staff, or businesses with non-traditional work weeks — cannot represent their schedule accurately in the Scheduler without resorting to CSS workarounds that break event positioning.

Introduce a `days` prop (or equivalent) on `WorkWeekView` and `DayView` that accepts an array of `Day` enum values. When provided, the view should render only the specified days as columns, in the declared order, regardless of whether they are consecutive.

<WorkWeekView days={[Day.Monday, Day.Wednesday, Day.Saturday]} />

Unplanned
Last Updated: 14 Aug 2026 07:27 by ADMIN
Created by: Hubert
Comments: 1
Category: DropDownList
Type: Bug Report
0

When filterable={true} is set, the filter input field does not respond to Home and End keys. The keys are swallowed and never reach the input element, making cursor navigation less convenient.

Steps to Reproduce:
- Render a DropDownList with filterable={true}
- Open the dropdown and type a string into the filter input
- Press Home, End, Shift+Home, or Shift+End

Expected: cursor moves to start/end of input; Shift+Home/Shift+End selects text
Actual: nothing happens in the input field

https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/filtering

 

Unplanned
Last Updated: 10 Aug 2026 11:59 by ADMIN

Problem:

Currently, passing props directly through customSlot and customItem triggers numerous unnecessary component rerenders. To mitigate this, official support recommends passing props via React Context and wrapping customSlot/customItem in React.memo, while explicitly specifying which props should trigger a rerender upon changing. These additional workarounds introduce a poor developer experience. It is initially unclear what needs to be implemented, and it introduces a high maintenance overhead, as any future component extensions or changes require manual monitoring to prevent regressions.

Proposal:

Please optimize the internal mechanics of customSlot/customItem so that they handle updates efficiently out of the box, eliminating the need for this boilerplate code. Below is an example that implements all the current recommended workarounds to avoid unnecessary redraws:

https://stackblitz.com/edit/react-kr5cmxga-dp96seni?file=app%2FcustomSlot.tsx 

Unplanned
Last Updated: 05 Aug 2026 08:40 by ADMIN
Title: Alternative to Single Pointer options is not provided for adjusting the graph points.

Test Environment: 
OS: Windows 11 Version 24H2 (OS Build 22631.3958)
Browser: Microsoft New Edge Version 128.0.2739.42 (Official build) (64-bit)

Repro Steps:
  1. Open URL: React Charts Library & StockChart - StockChart - KendoReact Docs & Demos (telerik.com in Edge browser.
  2. "Kendo React Stock Chart Overview" chart will appear. 
  3. Navigate to the second chart present under Example using tab key.
  4. Now verify whether the single Pointer options alternative is provided for adjusting the graph points or not.
    Actual Result: An alternative to Single Pointer options is not provided for the dragging functionality to adjust the graph for start and end point.
    Please refer attachment- Single Pointer options alternative is not provided for adjusting the graph points.

    Expected Result: 
    Single Pointer options alternative should be provided for adjusting the graph points.
     
    Example: There can be editable fields provided so that the user can add values accordingly.
     
    Unplanned
    Last Updated: 28 Jul 2026 07:34 by ADMIN
    Test Environment: 
    OS: Windows 11 Version 24H2 (OS build 26120.2705)
    Browser Edge Version 132.0.2957.55

    URL: https://codesandbox.io/p/sandbox/objective-blackburn-jvz3py

    User Impact:

    Keyboard dependent users will find it difficult to navigate as the focus order is not logical when navigating through the "Upload" controls of bar charts components.

    Repro steps:
    1. Open URL: https://codesandbox.io/p/sandbox/objective-blackburn-jvz3py in the latest chrome browser.
    2. Code sandbox page will appear. 
    3. Press tab key from the top of the page to "https://jvz3py.csb.app/" edit field on right side to reach the Bar chart.
    4. Press tab key to move focus between bar charts and press arrow keys to navigate through the bar chart points.
    5. Verify on pressing tab keys whether the keyboard focus order is logical while navigating the "Upload" controls of Bar chart components.

    Actual Result:
    Keyboard focus order is not logical when navigating through the "Upload" controls of bar charts components in windows. Focus will not move to the 'Upload' button it will move to the next bar graph control.

    Refer Attachment: Keyboard focus order is not logical when navigating through the Upload controls of bar charts components.mp4

    Expected Result:
    Keyboard focus order should be logical while navigating the "Upload" controls of Bar chart components in windows. Focus should move to the 'Upload' button.
    Unplanned
    Last Updated: 22 Jul 2026 07:29 by ADMIN
    Created by: Amit
    Comments: 1
    Category: PDF Processing
    Type: Feature Request
    0
    The current `PDFExport` / `GridPDFExport` pipeline relies on `drawDOM`, which traverses and renders the full DOM tree on the main browser thread before generating the PDF. This works for smaller datasets, but it becomes impractical for large Grid exports. In a reported real-world SPA scenario running behind CloudFront with no backend, exporting 10,000+ rows takes approximately 10 to 15 minutes, blocks the UI, and makes the built-in PDF export unusable for production workflows.
    Unplanned
    Last Updated: 22 Jul 2026 05:32 by ADMIN

    Overview:

    The KendoReact PDF Viewer renders every page of a document up front. For large PDFs this causes long initial load times and high memory use.

    Expose load-on-demand / virtualized page rendering in the React component, matching the existing Kendo UI for Angular PDF Viewer which has:

    • loadOnDemand - render pages as the user scrolls
    • loadOnDemandPageSize - pages fetched/rendered per batch

    Reference: https://www.telerik.com/kendo-angular-ui/components/pdfviewer/load-on-demand

    This is a framework-parity gap. The same underlying rendering engine already supports on-demand loading in Angular (and virtualization has been requested for Blazor: httpzor/1594054-pdf-viewer-virtualization). React usershitting large documents currently have no first-party option and must swap to a third-party viewer.

    Environment: @progress/kendo-react-pdf-viewer 10.2.0, React 19, Next.js 15.

    Unplanned
    Last Updated: 10 Jun 2026 15:23 by ADMIN

    ExcelExport has a prop for 'creator'. When the excel file is generated, "creator"'s value is reflected in the file's metadata

    For accessibility / screen reader purposes, Title (under Description) must also be populated. Please allow a "title" prop to be accepted by the ExcelExport component.

    Unplanned
    Last Updated: 10 Jun 2026 14:25 by ADMIN
    Created by: Ruslan
    Comments: 3
    Category: KendoReact
    Type: Feature Request
    2

    I would like to request a new Kendo React Grid column editing option so that users can navigate editable columns using the keyboard. This feature should be similar to "navigatable" option from Kendo jQuery grid example - https://demos.telerik.com/kendo-ui/grid/editing

    Thanks.

    Unplanned
    Last Updated: 10 Jun 2026 14:24 by ADMIN
    A Wizard Control, allowing any number or steps vertical or horizontal plus ability to modify the look and feel of the steps.  Also the ability to add other controls within each step.  For example a wizard control with the ability to have 3 steps, in which one would have a grid, or scheduler or other components.
    Unplanned
    Last Updated: 10 Jun 2026 11:38 by ADMIN
    Created by: Ravi
    Comments: 4
    Category: Spreadsheet
    Type: Feature Request
    14

    Hi, 

    I'm in need of the dropdown feature in spreadsheet cells. I had been using the Kendo Spreadsheet React Wrapper which had the dropdown feature but since the latest update to Kendo React Spreadsheet I have been facing issues. Please try to get this feature as soon as possible and I'm sure this will be helpful for other users, too.

    Thank you.

     

    Unplanned
    Last Updated: 29 May 2026 14:01 by ADMIN
    Scheduled for Q2 2025 (May)
    Created by: Speedy
    Comments: 2
    Category: KendoReact
    Type: Bug Report
    0
    We have recently added the scrollable prop to our tabStrip component but we are noticing that now on the active tabs there is a line, which is not show when not using the scrollable property. Is there anyway to remove this line? It makes it more difficult in terms of affordance and UX to see that this element is the active tab when there is this line. It somehow breaks the connection between the tab and the content. 


    Any help would be appreciated. 
    Unplanned
    Last Updated: 06 May 2026 06:56 by Bernd
    The Grid component provides a columnMenuIcon prop on GridProps and a per-column menuIcon prop on GridColumnProps. These props allow customization of the column menu trigger icon.

    The TreeList does not support this capability. It uses a fixed filter icon defined in the shared ColumnMenu from @progress/kendo-react-data-tools.

    Add equivalent columnMenuIcon support to the TreeList to match the Grid feature set. This change allows users to customize the column menu button icon without reliance on a render callback workaround.
    Unplanned
    Last Updated: 16 Apr 2026 11:44 by ADMIN
    Created by: Jitendra
    Comments: 1
    Category: PDF Viewer
    Type: Feature Request
    1

    Hi Team,

     

    I want to use annotations and marking in PDF and my tech stack is React is this possible with telerik currently?

    Unplanned
    Last Updated: 09 Apr 2026 21:54 by ADMIN
    Created by: Sergei
    Comments: 12
    Category: KendoReact
    Type: Feature Request
    32

    Hello,

    We are currently developing an application based on Kendo React components.
    We are wondering if the React-Gantt chart has the functionality to edit the data by drag-n-drop the same way it possible with JQuery-Gantt (see attachment).

    Thanks in advance for your help.

     

    Kind regards,
    Sergei

    Unplanned
    Last Updated: 08 Apr 2026 11:59 by Bojan
    Created by: Bojan
    Comments: 0
    Category: KendoReact
    Type: Feature Request
    1
    It would be beneficial if the Chat component had an `autoFocus` prop
    Unplanned
    Last Updated: 01 Apr 2026 07:30 by ADMIN
    Created by: Pravin
    Comments: 1
    Category: KendoReact
    Type: Feature Request
    1
    *** Support ticket created by Telerik by Progress staff ***
    *** Please follow-up with additional details, if necessary. Thank you. ***

    The following options are available in the jQuery version: 

    Insert Comment 

    Insert Hyperlink 

    Insert Image 

    In KendoReact Spreadsheet: 

    These features are currently not available. 

    Query: 

    Are there any APIs or extension points to support these insert operations? 

    Is there a roadmap for introducing these capabilities? 


    Unplanned
    Last Updated: 26 Mar 2026 21:13 by ADMIN
    Created by: Dominik
    Comments: 2
    Category: Grid
    Type: Feature Request
    4

    When implementing a custom filter cell (e.g., to support DatePicker modes such as time-only, date-only, or datetime), there is currently no straightforward way to reuse the built-in filter UI elements like the operator selector and clear button.

    At the moment, these controls must be recreated manually to match the behavior and styling of the default Grid filter cells. While GridCustomFilterCellProps.children does include these elements, they are bundled together with the default filter input, making it difficult to extract and reuse only the needed parts.

    It would be very helpful if the default operator dropdown and clear button were exposed separately (or made easily accessible), so they can be reused in custom filter cells.

    This would:

    • Ensure visual and behavioral consistency with built-in filter cells

    • Reduce duplication of logic and styling

    • Minimize the risk of breaking changes when internal class names or implementations are updated

    A supported way to access or compose these default controls would greatly improve the developer experience when building custom filter cells.

    Unplanned
    Last Updated: 23 Mar 2026 10:11 by Dhara
    Created by: Lukasz
    Comments: 2
    Category: KendoReact
    Type: Feature Request
    3
    Disabling the row click selection will be useful In scenarios like multi-row checkbox selection, where the client does not want to update the selection state on row click (but only on checkbox click).
    Unplanned
    Last Updated: 20 Feb 2026 11:00 by Anu
    Created by: Anu
    Comments: 0
    Category: KendoReact
    Type: Feature Request
    3

    Add an optional row-based keyboard navigation mode for the KendoReact Grid where Arrow Up and Arrow Down move focus between entire rows instead of individual cells.

    1 2 3 4 5 6