Completed
Last Updated: 18 Oct 2019 11:32 by ADMIN

Column locked with KendoReact Grid is not locked in the iPhone safari.  It's OK in Chrome phone simulator, but not in mobile. 

 

<Grid
                    style={{ height: '400px', width: '500px' }}
                    data={products}
                    reorderable
                >
                    <Column field="ProductID" title="ID" width="45px" locked />
                    <Column field="ProductName" title="Name" width="250px" />
                    <Column field="Category.CategoryName" title="CategoryName" />
                    <Column field="UnitPrice" title="Price" width="90px" />
                    <Column field="UnitsInStock" title="In stock" width="90px" />
                    <Column field="UnitsOnOrder" title="On order" width="90px" />
                    <Column field="Discontinued" width="120px" locked={true} />
                    <Column field="QuantityPerUnit" title="Additional details" width="250px" />
                </Grid>
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>
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
    };

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!

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

Hey there Kendo React Team!

 

In the drop downs there is this convenient "X" so users can quickly clear the information in the input. Would it be possible to implement this into the Date & Time Pickers as well as Generic Inputs? 

 

 

Thanks!

Unplanned
Last Updated: 09 Jul 2019 13:28 by Gurpreet Singh
Created by: Gurpreet Singh
Comments: 2
Category: KendoReact
Type: Feature Request
3

While export and save PDF are extremely useful features that Kendo React UI provides. 

I would like to have option to generate Password protected PDF. 

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.
Completed
Last Updated: 13 Sep 2019 07:19 by ADMIN
Release 3.4.0
Created by: Mark
Comments: 2
Category: KendoReact
Type: Feature Request
2

Hello again Kendo React Team,

Our team recently started using the Kendo React DateTimePicker and noticed that if the user clicks "Today" followed by "Now" the drop down does not automatically go away. The DatePicker and TimePicker both have this desired action of closing the drop down when selecting. Would it be possible to add this functionality to the DateTimePicker?

Thanks,
Mark

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

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: 20 Oct 2020 10:21 by ADMIN
The ability to insert images in the Editor from the file system.

This can be done from the file browser or using drag and drop.
Unplanned
Last Updated: 19 Oct 2020 05:07 by ADMIN
Created by: James
Comments: 2
Category: KendoReact
Type: Feature Request
37

Add hideAfter prop to the Notification component.

This will allow controlling when the notification will be hidden.

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: 26 Jun 2019 14:00 by ADMIN
I updated to the latest version of the kendo react components (3.2.1) and notices that if there are no records in the grid - the message is displayed in the first column rather than spanning - this behaviour is also happening in the demo - see the attached.
Completed
Last Updated: 13 Sep 2019 07:19 by ADMIN
Release 3.4.0
Created by: Matej
Comments: 0
Category: KendoReact
Type: Feature Request
0
Every time I click on the date icon and this component is in the upper third of the screen the whole page scroll down itself. This happens only in Chrome (tested on Version 75.0.3770.80) in Firefox is everything.
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.

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.

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.
Planned
Last Updated: 22 Oct 2020 19:06 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.
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.