Unplanned
Last Updated: 27 Apr 2021 10:39 by ADMIN
Created by: Eli
Comments: 1
Category: KendoReact
Type: Feature Request
1

1) Use this StackBlitz application: https://react-scwx3i.stackblitz.io - This is based on Telerik's own DatePicker React example.

2) Highlight the AM/PM section.

3) Try to change the AM/PM section via typing. It doesn't change. Note that other fields in the date/time picker are responsive to keyboard input.

Expectation is that the AM/PM section should respect at least "A" and "P" inputs.

Unplanned
Last Updated: 16 Jun 2021 08:28 by ADMIN
Scheduled for 4.7.0
Created by: Ram
Comments: 0
Category: KendoReact
Type: Feature Request
1
Add SVG support for the Tooltip component.

The SVG element does not have a title attribute but instead is using an <title> element.
Completed
Last Updated: 30 Jul 2023 05:18 by ADMIN
Release 4.6.0
AutoComplete focused item is not set correctly if the items are with different height.

Currently, it is required to have the same height for the items, but this can be very hard in cases when the items are dynamic with various height.
Declined
Last Updated: 26 Jun 2019 13:59 by ADMIN
Created by: yao
Comments: 1
Category: KendoReact
Type: Feature Request
1
How to Realize Fixed Total Row at the Bottom in React Grid?
Completed
Last Updated: 07 Aug 2019 06:26 by ADMIN
Created by: yao
Comments: 1
Category: KendoReact
Type: Feature Request
1

How to merge rows in React Data Grid?

Only ColSpan did not find RowSpan in the GridCellProp

Unplanned
Last Updated: 10 Jul 2019 12:52 by ADMIN
Created by: Mark
Comments: 1
Category: KendoReact
Type: Feature Request
1

Hello Kendo React Team!

 

We noticed in our Review and Retro that the drop down to select how many items per page is not styled. The user on my team had a green theme to their desktop and the picker was green. Our main colors or blues so it stuck out. The jQuery grid has that drop down styled so it matches the theme used for Kendo. Would it be possible to use a custom component instead of a regular input?

Thanks!

Declined
Last Updated: 07 Aug 2019 06:26 by ADMIN

In order to display  KendoReact Chart on mobile phones on a horizontal screen, CSS "rotate(90deg) translate(...)"   is applied to KendoReact Chart,

but the coordinates of tooltip are incorrect.

     let w = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
     let h = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; 

     let x = (h-w)/2;
     let ts = "rotate(90deg) translate("+x+"px,"+x+"px)";
     const maxstyle={
        transform:ts,
        width:h,
        height:w,
        top:0,
        left:0,
        paddingLeft:5,
        paddingRight:5,
        paddingTop:5,
        transformOrigin:"center center",
        background:'#f5f5f9',
        overflow:"hidden",
        position:"fixed",
        zIndex:10000
    };

Declined
Last Updated: 18 Jul 2019 10:02 by ADMIN

When then CSS "rotate(90deg) translate(...)" is applied to KendoReact Chart, the coordinates of tooltip are incorrect.
In order to display  KendoReact Chart on mobile phones on a horizontal screen, CSS "rotate(90deg) translate(...)"   is applied to KendoReact Chart,

but the coordinates of tooltip are incorrect.

 

sourcecode:

     let w = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
     let h = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; 

     let x = (h-w)/2;
     let ts = "rotate(90deg) translate("+x+"px,"+x+"px)";
     const maxstyle={
        transform:ts,
        width:h,
        height:w,
        top:0,
        left:0,
        paddingLeft:5,
        paddingRight:5,
        paddingTop:5,
        transformOrigin:"center center",
        background:'#f5f5f9',
        overflow:"hidden",
        position:"fixed",
        zIndex:10000
    };

<div  style={maxstyle}>
                    <img src={closeImage} onClick={this.onBack.bind(this)} className="closeImage"/>
                    {this.renderSingleBlock()}
  </div>
Completed
Last Updated: 09 May 2019 06:26 by ADMIN
Created by: Joshua
Comments: 3
Category: KendoReact
Type: Feature Request
1
Please refer to this stack overflow question that explains all the problem statement and what we need to accomplish in the new feature https://stackoverflow.com/questions/55957108/how-to-change-the-header-of-the-details-expand-collapse-columns-for-the-detail-r
Completed
Last Updated: 28 Jul 2023 13:02 by ADMIN
Created by: iConect Developer - Mike
Comments: 0
Category: KendoReact
Type: Bug Report
1

Grid Header shifting when filtering column.

When a column is half visible, and it is filtered, a misalignment will occur between the header and the Grid content.

Video: https://www.screencast.com/t/PhOonptY2

Completed
Last Updated: 07 Aug 2019 11:38 by ADMIN
Created by: John-Paul
Comments: 1
Category: KendoReact
Type: Feature Request
1
Add controlled state for the Tooltip visibility.

This will allow to programmatically show and hide the Tooltip.
Unplanned
Last Updated: 05 Jun 2019 09:40 by ADMIN
Created by: Mark
Comments: 1
Category: KendoReact
Type: Feature Request
1
Currently the Date Picker and Time Picker along with the new Date Time Picker have a placeholder text on them like month/day/year which pushes the material UI label on top of the input. The rest of my inputs have the label inside the input until a value is inserted. Is there anyway to remove that placeholder from these pickers? I feel it takes away from the design of my website to have some inconsistency with the inputs when you open a form with no data in it. For now we implemented a placeholder of --/--/---- but would prefer it to be like the Order Number above.
Unplanned
Last Updated: 26 Jun 2019 14:01 by ADMIN
Created by: Robin
Comments: 1
Category: KendoReact
Type: Feature Request
1

The typographical kerning defined by the font is not respected when exporting components to pdf.

The text has the same aspect as if the following css property had been defined:


element {
  font-kerning: none
}

 

It will be nice to support font-kerning on pdf export.

Completed
Last Updated: 12 Jun 2019 06:33 by ADMIN

When setting filter type in column to `boolean` it breaks when opening the column menu with the following JS error inside `filterCommon.js`:

TypeError: Cannot read property '0' of undefined

Here's a sandbox to see. Click the column menu next to each column header. Notice `Discontinued` column will cause a JS error: 

https://stackblitz.com/run/?file=app%2Fmain.jsx

 

The sandbox was taken from https://www.telerik.com/kendo-react-ui/components/grid/columns/column-menu/

 

We're using v3.1.0 but the sandbox has 3.2.0. Both versions have this bug. It seems 2.11.0 is the last working version.

Completed
Last Updated: 27 May 2021 17:07 by ADMIN
Created by: Hugo
Comments: 3
Category: KendoReact
Type: Feature Request
1
Hello,

I would like to know if there are any Kendo React components to suit Bottom navigation functionality as per Material Design

Thanks in advance,
Completed
Last Updated: 20 Oct 2020 10:28 by ADMIN
Created by: Kyle
Comments: 3
Category: KendoReact
Type: Bug Report
1

In the KendoReact Scheduler component, there is a bug when you try and change the date for an event.

Steps to reproduce:

  1. use an editable scheduler component in your website
  2. click on an event in the scheduler to open the modal
  3. in the modal click on the date selector (calendar) icon next to Start or End.
  4. The date selector is behind the modal

Looks like you need to change the z-index of the date selector if it is a child of a modal.

 

Thanks! I attached screen shots.

Unplanned
Last Updated: 27 Apr 2021 10:31 by ADMIN
Created by: Andrei
Comments: 5
Category: KendoReact
Type: Feature Request
1

Hello,

I have a request that for some tables the user needs arrows to be able to scroll left and right horizontally through the grid content. Is there a functionality like this provided out of the box by Kendo Grid, can you please point me to the docs or provide an example? I have provided an image to reflect this.

Thank you,

Andrei

Completed
Last Updated: 17 Sep 2020 14:37 by ADMIN
Created by: Ruslan
Comments: 2
Category: KendoReact
Type: Feature Request
1

Hello,

I have a request to add a ListView control to a React Pure control package.

Thanks.

Unplanned
Last Updated: 07 Nov 2019 09:31 by ADMIN
Created by: Paito
Comments: 1
Category: KendoReact
Type: Feature Request
1

I'd really like a KeepIt prop on https://www.telerik.com/kendo-react-ui/components/conversationalui/api/Action/ so that the action stays even when someone is typing or there is another message below it.

The use case would be a link to a Order # for example that they could go back to and click.

https://www.telerik.com/kendo-react-ui/components/conversationalui/suggested-actions/


Example of how this works with react-native-gifted-chat:

https://github.com/FaridSafi/react-native-gifted-chat#message-object

Completed
Last Updated: 13 Sep 2019 07:23 by ADMIN
Release 3.3.0
Pressing enter in the ComboBox will select the first item with the same text value.

If we have items with the same text value and we navigate through them with the arrow keys and then select one with enter, the ComboBox will return the first item with that text instead of the currently selected one.