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

Completed
Last Updated: 28 Jul 2023 12:53 by ADMIN

The Tooltip component has a className property. Providing a class name there does not seem to apply the class to the DOM element. See my below code and attached screenshot ...

            <div className="col">
              <label className="d-block">Name</label>
              <Input value={name} required={true} onChange={handleNameChange} />
              <Tooltip className="d-inline">
                <i className="k-icon k-i-info" title="The name of the Taxonomy" />
              </Tooltip>
            </div>

Completed
Last Updated: 28 Jul 2023 12:09 by ADMIN

Currently, the Scheduler events are always placed between the beginning and the end of a slot, no matter if the event actually starts or ends at the slot times. So if an event for example starts at 10:10, the event is placed at the 10:00 slot line and not a little further down below, or if it ends at 11:50 the event end is placed at the 12:00 slot line. I'm talking here especially about the WeekView and the DayView.

This is not accurate enough for some events. Like for example in MS Outlook, if a event doesn't start at the full hour, the graphical representation shows it according to the start time and not at the full hour (see screenshots). We would like to request to make it possible to place events on the Scheduler so that the graphical representation of the event reflects the actual start and and time.

While I was able to calculate a margin for the event start to move it to a more accurate position, it was not possible to also set the height of the event to a calculated positition because the Scheduler doesn't allow this. According your support (see here), an event always has to end at a full slot time and can't be placed somewhere else. Calculating these things on our own brings a whole lot of other problems though (like placing overlapping events correctly, etc.) so that it would be great if the Scheduler had a setting to allow exact positioning according to times.

 

Completed
Last Updated: 28 Jul 2023 12:07 by ADMIN
Created by: Daniel
Comments: 1
Category: KendoReact
Type: Feature Request
7

React v18 has been released.

It appears that KendoReact only supports up to v17 (dependency conflicts if you try to use v18).

Can you please add support for React v18?

Thanks!

Completed
Last Updated: 28 Jul 2023 12:00 by ADMIN
if yes, do you have any example?
Completed
Last Updated: 27 Jul 2023 14:34 by ADMIN
Created by: Wajid
Comments: 1
Category: KendoReact
Type: Feature Request
4
Add a Timeline component similar to the one available for Kendo UI for jQuery:

https://demos.telerik.com/kendo-ui/timeline/index
Completed
Last Updated: 18 Jun 2023 11:23 by ADMIN
Created by: Henk
Comments: 1
Category: KendoReact
Type: Feature Request
28
Native REACT spreadsheet component
Completed
Last Updated: 05 Jun 2023 15:38 by ADMIN
Created by: David
Comments: 4
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: 15 May 2023 15:58 by ADMIN
Created by: Claudio
Comments: 3
Category: KendoReact
Type: Feature Request
0

Hi, when using the Kendo React Typography component like following:

<Typograpy.h1></Typograpy.h1>

compiler gives the following warning:

Imported JSX component h6 must be in PascalCase or SCREAMING_SNAKE_CASE                                                                       react/jsx-pascal-case
It would be nice to change this behavior to the right one, or maybe adding a property 'variant'
Completed
Last Updated: 26 Apr 2023 05:50 by ADMIN
Created by: Chaz
Comments: 9
Category: KendoReact
Type: Feature Request
13

I've noticed in your other products, the dropdownlists have a property that allows for grouping sets of data. 

What would it take to get that included in Kendo UI React?

We have a use case that this would be very helpful.

Thanks.

Completed
Last Updated: 20 Mar 2023 14:18 by ADMIN
Created by: Ravi
Comments: 6
Category: Data Grid
Type: Feature Request
9

Hi,

I know pageSizes options takes a Boolean or Array of Numbers, but Is there a way add an option to pagination dropdown which lists all rows of the grid like, 'All' option?

Can we set the options of the dropdown to like '10, 50, All', where option 'All' lists all rows of the grid?

 

 

Completed
Last Updated: 24 Feb 2023 12:18 by ADMIN
Created by: Arifullah
Comments: 2
Category: KendoReact
Type: Feature Request
1

Hi,

Can We have an admin Dashboard for KendoReact? which has some ready components Like NavBar on top and Left, Dark and Light mode, RTL, and LTR Layouts and Forms with all input Components

I Have More projects in this React MUI Admin Dashboard and now it's very hard for me to use the KendoReact Components here.

if we Have KendoReact Admin Dashboard like that it will be easy to use KendoReact components there.

 

Thanks

Completed
Last Updated: 24 Feb 2023 12:16 by ADMIN
Created by: João Paulo
Comments: 5
Category: KendoReact
Type: Feature Request
15
As the project grew, my team needed to use more tabs, necessarily with the tapPosition property as "top". Many tabs mean that some do not appear in specific widths , mainly in a small width. That said, there is a need to create a shape that preserves the structure of the tabs with scroll, already done with telerik for jquery: https://demos.telerik.com/kendo-ui/tabstrip/scrollable-tabs
Completed
Last Updated: 10 Feb 2023 14:10 by ADMIN
Created by: Levi
Comments: 1
Category: ComboBox
Type: Feature Request
0

The React ComboBox and Autocomplete do not support the valueRender prop, so a selected value cannot have a custom display. The DropDownList does however - they should all be consistent in this.

DropDownList reference:
React Dropdowns Library & DropDownList Component - Custom Rendering - KendoReact Docs & Demos (telerik.com)

Completed
Last Updated: 24 Jan 2023 11:26 by ADMIN
Created by: lavanya
Comments: 1
Category: DropDownList
Type: Feature Request
0

Hi, I am Lavanya!

in my dropdown list, there are horizontal layouts I need to change to the vertical dropdown list

and also I have attached bar data in that I need to make a dropdown filter of the month how can I use that

1 2 3 4 5