Completed
Last Updated: 10 Jun 2026 15:47 by Tim

Hello, 
I am looking to start using the Kendo React grid control, but I need the grid to be responsive to support viewing on a phone. I noticed that your Angular grid has this functionality, but it is missing from your React grid
I would like to have rows turn into individual cards when viewed on a phone. The closest thing I see in the react documentation involves hiding columns, which is undesirable.  Is there a way to add this behavior to the React grid?  If not, when will that be implemented?  
Thank you, 
Alex

 

Completed
Last Updated: 10 Jun 2026 14:37 by ADMIN

Add the ability to apply table breakpoints to the Grid for responsive behavior.

Similar to the Bootstrap tables:

https://getbootstrap.com/docs/4.4/content/tables/#breakpoint-specific

Completed
Last Updated: 29 May 2026 14:25 by ADMIN
Created by: Veselina
Comments: 1
Category: KendoReact
Type: Feature Request
1

React Server Components allow the developer to mix the fast server-side rendering with the interactivity of client-side JavaScript. 

So far modern JS frameworks were explicitly operating on the client (with SSR being an optional feature). With server-components it's the opposite - RS Cs introduce a new mental model for building hybrid applications that leverage both the server and the client.

The main advantages of the React Server Components are that:

  • Initial page load is faster;
  • You can move the data fetching to the server;
  • You can keep the large dependencies on the server;
  • The client-side JavaScript bundle size is reduced;
    Completed
    Last Updated: 29 May 2026 13:41 by ADMIN
    Created by: Glen
    Comments: 2
    Category: KendoReact
    Type: Feature Request
    13

    Hi

    Please build a React Diagram component similar to https://demos.telerik.com/aspnet-ajax/diagram/examples/overview/defaultcs.aspx

    Completed
    Last Updated: 07 May 2026 10:30 by ADMIN
    Created by: Molly
    Comments: 4
    Category: DropDownList
    Type: Feature Request
    1

    Good morning,

    I have seen a component within the Angular library that I would like to include in my project using React. The link to it is here:

    https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/add-new-item

    Are you able to advise on how I could implement this please?

     

    Best wishes,

    Molly

    Completed
    Last Updated: 06 Jan 2026 09:57 by ADMIN
    Currently the GridColumn Component only supports width property.  It should also support minWidth and maxWidth properties for better responsive design.  https://www.telerik.com/kendo-react-ui/components/grid/api/GridColumnProps/
    Completed
    Last Updated: 09 Apr 2025 15:40 by ADMIN
    Release 2024 Q4 (Nov)
    Created by: Peter
    Comments: 2
    Category: DatePicker
    Type: Feature Request
    5
    When my users are done typing in one date segment, I want the focus to pass to the next one automatically. 
    Completed
    Last Updated: 31 Mar 2025 14:06 by ADMIN
    Created by: lavanya
    Comments: 2
    Category: KendoReact
    Type: Feature Request
    0

    I have attached files, in which there is an app bar content there is a dropdown in the dropdown there are four elements, in that I need four drawer container on the left side as I attached by clicking the single dropdown, how can I attach 4 drawer container in a single project 

     

    Thank you

    Completed
    Last Updated: 31 Mar 2025 13:19 by ADMIN

     

    Environment (OS, Application, Versions)

    Repro Steps

    1. Open URL: Column Menu - Kendo React (telerik.com)
    2. Navigate to context menu controls available on column headers of Basic usage table.
    3. Verify if context menu is accessible using keyboard.

     

    Actual Results

    The 'context menu' controls available on the column headers under the basic usage table are not accessible using the keyboard.

     

    Expected Results

    The 'context menu' controls available on the column headers under the basic usage table should be accessible using the keyboard.

     

    Completed
    Last Updated: 13 Mar 2025 11:52 by ADMIN
    Created by: Alexander Green
    Comments: 3
    Category: Switch
    Type: Feature Request
    3

    Currently, the onLabel and offLabel properties can only be set to string values. There should be an option that allows setting icons for the Switch component.

     

    Completed
    Last Updated: 22 Nov 2024 06:34 by ADMIN
    Created by: prabu
    Comments: 3
    Category: Toolbar
    Type: Feature Request
    4
     I have explore and created the kendo react  toolbar by referring the link https://stackblitz.com/run/?file=app%2Fmain.jsx  and i tried to resize the browser and the toolbar moves to multiple rows.But i expected the toolbar height is fixed and and it will be always single row like the syncfusion toolbar (https://ej2.syncfusion.com/react/documentation/toolbar/responsive-mode/)
    Completed
    Last Updated: 30 Oct 2024 13:17 by ADMIN
    Created by: n/a
    Comments: 2
    Category: KendoReact
    Type: Feature Request
    1

    Hello,

     

    i am new to React and Kendo React UI.

    I am reading the documentation for Gantt, and if i understand it correctly i can customize header column (headerCell?), but I dont know how. Is there any examle ?

    I wound like to customize the column with dates.

     

    Thank you, Matjaz Reberc

    Completed
    Last Updated: 27 Sep 2024 04:48 by ADMIN

    I would like to add two tables side by side in Telerik Editor two tables side-by-side like I would in google docs for ex:

    Completed
    Last Updated: 06 Jun 2024 06:43 by ADMIN
    Created by: David
    Comments: 6
    Category: KendoReact
    Type: Feature Request
    5

    Hi,

    I would like to be able to specify a Grid Column template for the data without having to replicate the entire cell and its properties. Please see below for justification:

    Consider the following example of KendoReact Grid Cell customisation: https://www.telerik.com/kendo-react-ui/components/grid/styling/#toc-adding-custom-cells

    Following this approach results in the loss of a lot of properties from the grid cell compared with 'default' cells e.g.

    <td colspan="1" class="" role="gridcell" aria-colindex="1" aria-selected="false" data-grid-col-index="0">Chai</td>
    <td style="background-color: rgba(55, 180, 0, 0.32);">18 <span class="k-icon k-i-sort-asc-sm"></span></td>

    These properties are important for many reasons including accessibility. There is another example of KendoReact Grid Cell customisation that preserves these properties here: https://www.telerik.com/kendo-react-ui/components/grid/cells/#toc-customization

    e.g.

    <td colspan="1" class="" role="gridcell" aria-colindex="4" aria-selected="false" data-grid-col-index="3">39</td>
    <td colspan="1" role="gridcell" aria-colindex="5" aria-selected="false" data-grid-col-index="4" style="color: red;">false</td>

    However, there is a considerable amount of code required to achieve this:

    const CustomCell = (props) => {
      const field = props.field || "";
      const value = props.dataItem[field];
      const navigationAttributes = useTableKeyboardNavigation(props.id);
      return (
        <td
          style={{
            color: value ? props.myProp[0].color : props.myProp[1].color,
          }}
          colSpan={props.colSpan}
          role={"gridcell"}
          aria-colindex={props.ariaColumnIndex}
          aria-selected={props.isSelected}
          {...{
            [GRID_COL_INDEX_ATTRIBUTE]: props.columnIndex,
          }}
          {...navigationAttributes}
        >
          {value === null ? "" : props.dataItem[field].toString()}
        </td>
      );
    };

    I would like to be able to define a template for a cell without having to specify these properties every time.

    Kind regards,

    David

    Completed
    Last Updated: 08 Nov 2023 08:24 by ADMIN
    Release [R3 2023] PI 2
    Created by: Vasilii
    Comments: 2
    Category: DropDownList
    Type: Feature Request
    17
    Provide the same property for the React version: https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/disabled-items/
    Completed
    Last Updated: 09 Oct 2023 04:59 by ADMIN
    Release [R3 2023] PI 3
    Created by: Leeden
    Comments: 3
    Category: KendoReact
    Type: Feature Request
    16

    Hi Support, 

     

    Is there any org chat component or similar components in Kendo React that is similar to the Org Chart in this link https://demos.telerik.com/aspnet-ajax/orgchart/examples/overview/defaultcs.aspx?

     

    Thanks & Regards,

    Eason

    Completed
    Last Updated: 01 Sep 2023 10:03 by ADMIN
    Created by: Chunxing
    Comments: 2
    Category: KendoReact
    Type: Feature Request
    5
    Our app does alot of PDF viewing and manipulation and we currently are using some generic pdfjs component. We would really like to be able to use the feature rich pdf viewer from jQeury in react more easily that crating a wrapper for it.
    Completed
    Last Updated: 30 Jul 2023 05:49 by ADMIN
    Created by: Derek
    Comments: 1
    Category: KendoReact
    Type: Feature Request
    4
    I'm wondering if you have Kendo ReactJS 2D barcode component on the roadmap?  I see that there are wrappers, but would prefer a pure ReactJS solution.  I'd like to add my vote for addition of this component to the ReactJS suite.  Thanks.
    Completed
    Last Updated: 30 Jul 2023 05:46 by ADMIN
    Created by: Chunxing
    Comments: 1
    Category: KendoReact
    Type: Feature Request
    3

    Currently there is no Autoscroll feature for the treelist...so when I want to drag and drop an item somewhere outside of the viewed area its klunky have to drop then scrool then drag and drop again etc.

     

    Would really like to be able to autoscroll through the treelist

    Completed
    Last Updated: 30 Jul 2023 05:22 by ADMIN

    I know there you gave me an example of how to do this with custom code - is there a reason this can't be built in?   It's important and is a pain to custom implement when using custom editors for the cells

     

    Thanks

    Michael

    1 2 3 4 5 6