Declined
Last Updated: 18 Feb 2019 12:57 by ADMIN
Created by: Jason
Comments: 1
Category: KendoReact
Type: Feature Request
3

I discovered a lack of parity between the React and Angular implementations of the TabStrip/TabStripTab components. Specifically, in the React version the "title" prop determines the contents inside the resulting <k-link> CSS class, whereas the Angular version allows you to set a template, for more complex tab header components.

This became an issue for me, because we have overridden the CSS for a custom progress tracker component built on the tab strip in an Angular implementation. I am now tasked with replicating the component in React, but had to resort to my own TabStrip/TabStripTab classes, instead of being able to use your components. (My goal is to be able to use the existing CSS, maintained by our UX team, out of the box.)

Hope that made sense. Feel free to contact me if it's not clear what I'm asking for, or if there is already a solution to this. Thanks!

 

React version:

 

Angular Version:

 

 

Completed
Last Updated: 01 Apr 2019 09:45 by ADMIN

I want to make a request to add the autoClose property to manage KendoReactMultiSelect control.

Here is an example of code with several MultiSelect controls on the same page without the autoClose property:

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

You can clearly see that the autoClose property will be really useful.

Thanks.

Completed
Last Updated: 25 Feb 2020 11:44 by ADMIN
Created by: Justin
Comments: 5
Category: KendoReact
Type: Feature Request
7

It would be great to have a TreeList component similar in appearance and behavior to the jQuery TreeList (https://demos.telerik.com/kendo-ui/treelist/index), but with the kind of support for virtual scrolling built into the native KendoReact Grid component.

A React wrapper exists for the jQuery TreeList, but it still doesn't play nicely with React, and in any case only supports paging for displaying large data sets, which is inherently not intuitive for displaying tree structures where parent / child hierarchies might span multiple pages.

My sense is this native component would basically be the Grid, but with support for hierarchical data, including drag-and-drop re-ordering of parent / child relationships.

Thanks for considering this feature.

Declined
Last Updated: 18 Feb 2019 13:13 by ADMIN

Like in the jQuery counterpart, when I click on a cell to edit the value - I should be able to tab over to the next cell to edit it.

 

Declined
Last Updated: 14 Jan 2019 06:31 by ADMIN

We are evaluating the React Grid component for our application and need to be able to have rows that span all columns.  To do this, I have created a rowRender function that, for some rows, will render a single <td> element with the colspan set to 100%.  The row renders fine, but the other rows, that have multiple <td> elements do not all render correctly.  For my test application, they will render with a width of 8 pxs.  On resize of a column, they will almost render correctly.

Here are some pictures of the issue in our test code.

https://drive.google.com/open?id=1bMwlUi7-7QiVHc6lubPiz45svHG1FSnS

I have created a sandbox that sort of reproduces the bug. https://codesandbox.io/s/w73v0x0mz8

If you select the "Show Full Row", the row with Id 999 will convert to a single <td> element with colspan='100%'.  You will notice how after doing so, the last three columns collapse to a small number of pixels.

 

Thanks

Joe

Declined
Last Updated: 19 Feb 2019 12:19 by ADMIN

If you create a react grid without any GridColumn components and then add those components later, the added columns do not show and the grid is empty.  It appears, after a quick look that the columns have a width of 0 pixels.  They exist in the html, just not displayed.

 

See https://codesandbox.io/s/mmr894nllp as an example of the problem.  This example starts with a populated grid.  You can add columns and data using the buttons above the grid.  This works fine.  If you then "Reset" the grid with the button, which removes all data, any attempt to add columns and data will show a blank grid.

 

Thanks,

Joe

Unplanned
Last Updated: 18 Feb 2019 13:15 by ADMIN
Created by: Kendo UI
Comments: 0
Category: KendoReact
Type: Feature Request
1
Add ability to set attributes to the Grid header cell via prop. For example the title attribute.
They can be set as with key value.
Completed
Last Updated: 27 May 2021 17:03 by ADMIN

Multi-selecting rows using the mouse selection doesn't work for React Kendo Grid.

With the kendo grid wrapper for React we were able to  multi-select rows using the mouse selection in the grid bounds. 

 

Completed
Last Updated: 17 Feb 2021 07:09 by ADMIN
Created by: Imported User
Comments: 3
Category: KendoReact
Type: Feature Request
1
We have database constraints on certain fields e.g. varchar(10) and would like to prevent the user from entering invalid data into the combo box fields. If it's not too much trouble a minLength field would also be convenient.
Completed
Last Updated: 18 Dec 2018 07:46 by ADMIN
Created by: Imported User
Comments: 4
Category: KendoReact
Type: Feature Request
1
Our clients love the splitters from kendo ui.  Now that we're using kendo react, a splitter component would be useful.
Completed
Last Updated: 19 Feb 2019 10:30 by ADMIN
Created by: Imported User
Comments: 1
Category: KendoReact
Type: Feature Request
2
I'd like to be able to get the generated pdf data from GridPDFExport in a callback, instead of saving to file. This is useful for emailing pdfs.
It can easily be achieved by adding a 'generatePDF' method to the KendoDrawingAdapter prototype such as this:

  KendoDrawingAdapter.prototype.generatePDF = function (callback) {
        var _this = this;
        var savePromise = this.drawDOM(this.domElement, this.getDrawOptions())
            .then(function (group) { return _this.exportPDF(group, _this.getPDFOptions()); })
            .then(function (dataUri) { return dataUri });
        if (callback) {
            savePromise.then(callback, callback);
        }
    };
Unplanned
Last Updated: 18 Feb 2019 12:56 by ADMIN
Created by: Vikrant
Comments: 2
Category: KendoReact
Type: Feature Request
16
Grids should have auto width and max-width property
Completed
Last Updated: 26 Jun 2019 13:57 by ADMIN
Created by: Imported User
Comments: 1
Category: KendoReact
Type: Feature Request
2
Would it be possible to add a react wrapper of the angular / jQuery Sortable library?

https://docs.telerik.com/kendo-ui/controls/interactivity/sortable/how-to/AngularJS/use-sortable-grid-angular
Completed
Last Updated: 22 Oct 2018 15:03 by ADMIN
Created by: Ben
Comments: 2
Category: KendoReact
Type: Feature Request
1
Completed
Last Updated: 19 Feb 2019 07:45 by ADMIN
Created by: Ben
Comments: 1
Category: KendoReact
Type: Feature Request
1
When using DateTime's in column using Grid there should really be a way to use MomentJS to convert the value in the column. In jQuery it was a simple case of template: "#:moment().format('dd/MM/yyyy')#". Can we please have this ported over.
Unplanned
Last Updated: 18 Feb 2019 13:21 by ADMIN
Created by: Karthik
Comments: 0
Category: KendoReact
Type: Feature Request
4
It will be very useful if we can get the new component for IPV4/IPV6 input fields. Especially networking related products, I see lot of use cases.
Unplanned
Last Updated: 19 Feb 2019 12:21 by ADMIN
Created by: Imported User
Comments: 0
Category: KendoReact
Type: Feature Request
8
As in the JQuery version, it would be good to have the option of setting min screen width for grid column like below.

https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columns.minscreenwidth#columns.minScreenWidth
Completed
Last Updated: 20 Mar 2019 12:43 by ADMIN
Created by: Jason
Comments: 1
Category: KendoReact
Type: Feature Request
2
Although Kendo React UI supports virtualization for grids with many rows, supporting virtualization for wide rows with hundreds of columns would increase rendering performance.

https://www.telerik.com/account/support-tickets/view-ticket?threadid=1343205
Declined
Last Updated: 20 Oct 2020 10:36 by ADMIN
Created by: Imported User
Comments: 0
Category: KendoReact
Type: Feature Request
0
Currently, using npm install --save @progress/kendo-theme-material will get the standard Material Design theme for use across the React Components, but why is Material Black not available this way? (npm install --save @progress/kendo-theme-materialBlack)
Completed
Last Updated: 04 May 2020 13:58 by ADMIN
Created by: Imported User
Comments: 15
Category: KendoReact
Type: Feature Request
21
As in the JQuery version, it would be good to have the option of showing the total of a column's values without having to use grouping aggregates. 

For example i have 10 products with their prices and i would like to see their total cost in a row below the column, without having to use grouping which adds more elements to the Grid.