Declined
Last Updated: 01 Apr 2019 08:21 by ADMIN
Created by: yao
Comments: 1
Category: KendoReact
Type: Feature Request
1

I don't know how to implement rowspan

Declined
Last Updated: 29 Mar 2019 07:34 by ADMIN
Created by: Grzegorz
Comments: 1
Category: KendoReact
Type: Feature Request
3
As in the JQuery version, it would be good to have the option of hidding a column. 
https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columns.hidden
Completed
Last Updated: 18 Oct 2019 10:56 by ADMIN
Created by: Antonios
Comments: 4
Category: KendoReact
Type: Feature Request
3

Please add toolbar support in the react conversationalui, just like it exists in the jQuery chat component.

We need in our projects a way to add custom action buttons, besides the simple "send" message.

Ie. attach files/images to a message, open emoji picker, etc.

Unplanned
Last Updated: 25 Mar 2019 07:26 by ADMIN
Created by: Julie
Comments: 0
Category: KendoReact
Type: Feature Request
2
Return the entire dataItem in the AutoComplete onChange event, similar to the DropDownList.
Completed
Last Updated: 25 Mar 2019 09:45 by ADMIN
Created by: Lucia
Comments: 1
Category: KendoReact
Type: Feature Request
0
Add a prop to add your own class name to the Dialog
Completed
Last Updated: 17 May 2019 11:49 by ADMIN
Release 2.11.0
Created by: Julie
Comments: 0
Category: KendoReact
Type: Bug Report
0

AutoComplete component name attribute is not set.

GitHub item: https://github.com/telerik/kendo-react/issues/221

Workaround: https://stackblitz.com/edit/react-dawzkj?file=app/main.js

Completed
Last Updated: 26 Jun 2019 14:19 by ADMIN
Created by: Daniel
Comments: 0
Category: KendoReact
Type: Bug Report
0

The Switch layout is misaligned on IE 11.

54738802-5a28bf00-4bbe-11e9-91aa-7eb104343935.png (195×151)

This is reproducible in our demos as well.

GitHub issue: https://github.com/telerik/kendo-react/issues/220

Completed
Last Updated: 23 Sep 2019 08:51 by ADMIN
Created by: Antonios
Comments: 1
Category: KendoReact
Type: Feature Request
4

Add support for styled components.

This will allow lazy loading for the styles depending on the used features of a component to reduce the styles sheet size.

Unplanned
Last Updated: 20 May 2020 13:36 by ADMIN
Created by: Fabio
Comments: 4
Category: KendoReact
Type: Feature Request
5

I would like to request the data-query package support filtering on OData collections using lamdba functions. Given a Collection with the existing operators, the filter string outputted by `toODataString` should be OData v4 compliant.

 

Example: Project is a collection. A user filters to see all General projects which outputs { field: 'Project', operator: 'eq', value: 'General' }.

 

Recommendation: Supply another key that dictates the lamdba operator and property field to use.

{ field: 'Project', operator: 'eq', value: 'General', lambda: 'any', collectionField: 'Name' } -> $filter=Project/any(x:x/Name eq 'General')

 

The above can work with inner functions like contains.

{ { field: 'Project', operator: 'contains', value: 'gen', ignoreCase: true, lambda: 'any', collectionField: 'Name' } -> $filter=Project/any(x:contains(tolower(x/Name),'gen'))

Unplanned
Last Updated: 02 Mar 2020 12:49 by ADMIN
Created by: Rogelio
Comments: 3
Category: KendoReact
Type: Feature Request
0

Currently, ComboBox generates a UUID and uses it as the input tag's id property (e.g. <input id="2e048165-6468-46c0-ba39-c47b12c7fcf2" />).

 

As a developer, I want to be able to set my own custom id so that I can set my own label tag as a sibling to the ComboBox component.

 

For example, I would like this to be possible:

<label for="hello">Hello World</label>
<ComboBox id="hello" />

 

There is a label prop offered on ComboBox which works fine but it does not let me specify the label tag with custom class names, styling, etc.

 

This new id prop should be optional and ComboBox can keep using the same technique it does when no id prop is passed to it.

 

Completed
Last Updated: 17 Sep 2020 14:02 by ADMIN
Created by: Ajay
Comments: 1
Category: KendoReact
Type: Feature Request
5
When the available space for the Menu go under specific width the Menu should be hidden and a hamburger style button should be shown to access the Menu. This feature has to be added to our Menu component to make it responsive.
Unplanned
Last Updated: 05 Mar 2019 08:10 by ADMIN
Created by: Ricky
Comments: 0
Category: KendoReact
Type: Feature Request
3
Request for a GroupHeaderTemplate for the Grid.

Currently, the only approach is to loop the data and set the desired text as a field value.
Completed
Last Updated: 28 Jul 2023 12:59 by ADMIN
Created by: Ram
Comments: 0
Category: KendoReact
Type: Bug Report
0
Calendar picker Template displays wrong year range when you click on a certain year.

Steps to Reproduce:

1) Open https://www.telerik.com/kendo-react-ui/components/dateinputs/datepicker/ in the Chrome browser

2) Click on the calendar icon, click on 'month/Year' in the calendar header e.g. March 2019

 
3) Click on the 'Year' in the calendar header i.e. 2019

4) further Click on the Year Range i.e 2010-2019

5) Year range will display from 2000 - 2090, Select year 2010

Wrong Year range (2090 - 2099) will display when clicked on 2010.

This is working properly in the Firefox browser and I observed the issue in Chrome.
Declined
Last Updated: 04 Mar 2019 09:04 by ADMIN
Right now there is no way that I found to create a row that displays the totals without grouping the data. I have had to create a separate table and hide the columns to simulate this feature. 
Completed
Last Updated: 17 Sep 2020 14:02 by ADMIN
Created by: Arun
Comments: 4
Category: KendoReact
Type: Feature Request
5

Hi, is there a way i can customize the paging options style? The default is we have the page selection on the left, number of Items per page selection in the middle and the total records info on the right. I would like to just reverse it. I tried a display flex on the container and a flex-direction: reverse but it reverses the paging icons also. Please advise.

A custom render method for the paging component or a wrapper around the paging buttons would be ideal so as to do a flex-reverse to play around with the styles.

 

https://stackblitz.com/edit/react-eb8yzz

Completed
Last Updated: 30 May 2019 11:46 by ADMIN
Release 3.0.0

Typing 111 in DatePicker results in skipping the day part. The third 1 is set to the year portion.

It is reproduced in our demo as well: 

https://www.telerik.com/kendo-react-ui/components/dateinputs/datepicker/

Completed
Last Updated: 18 Oct 2019 11:48 by ADMIN
Created by: Adil
Comments: 1
Category: KendoReact
Type: Feature Request
2
Create a function callback for the Upload saveUrl.
This will allow for more flexibility when making requests.
Unplanned
Last Updated: 28 Jul 2023 11:40 by ADMIN
Does KendoReact support ReactNative? if yes send me a sample ReactNative app link which contains KendoReact Components.
Declined
Last Updated: 18 Feb 2019 12:57 by ADMIN
this.state = {
sort:[
{field:'Date',dir:'desc'}
],

};

<Grid

sortable={true}
sort={this.state.sort}
onSortChange={(e)=>{
this.setState({
sort:e.sort
});

}}

<Column field="Date"filter="date"format="{0:d}"/>

In this way,the date will be sorting with Month, How can I sorting start with year instead of month

Unplanned
Last Updated: 28 Jan 2019 12:52 by Courtney
Created by: Courtney
Comments: 2
Category: KendoReact
Type: Feature Request
2

The KendoReact Tooltip component only displays tooltips on hover (the showTooltip method is called on the onMouseOver and onMouseLeave events). It would be ideal if the showTooltip method was also called on the onFocus event as well, making the user experience the same for keyboard-only users.

Most other UI libraries treat hover/focus the same for consistency and accessibility.

Bootstrap requires it:
https://getbootstrap.com/docs/4.1/components/tooltips/#making-tooltips-work-for-keyboard-and-assistive-technology-users

Material UI allows you to disable focus interaction, but the default is that focus is handled the same as hover:
https://material-ui.com/api/tooltip/#props