Unplanned
Last Updated: 30 Mar 2023 14:26 by ADMIN
It seems grid.selectable={{ drag: true }} prevents otherwise native browser cell text selection. We only need drag selection for the one special "isselected" checkbox column cells versus dragging selection across all the other cells.
Planned
Last Updated: 12 Nov 2024 08:40 by ADMIN
Created by: Owen
Comments: 3
Category: KendoReact
Type: Bug Report
5

When typing into a date picker and trying to type Feb 29th, 2024 (or any other leap year ofc) the date is updated incorrectly by the kendo date picker validation. As the user types the year their previous entry of 29 is updated to 28. This should update check should probably not occur until the user is done updating the input. If there is some fix or workaround we can do on our end to resolve this issue please let us know

Here's a video of the bug in our application

However, I was also able to reproduce the exact same behavior even in the documentation:

Completed
Last Updated: 28 Aug 2018 06:54 by ADMIN
Created by: EUMSolutions
Comments: 3
Category: KendoReact
Type: Feature Request
4
Currently there is  no way to get multi-column headers on Kendo UI's React  . please make this feature like jQuery
Completed
Last Updated: 23 Jul 2018 11:19 by ADMIN
Created by: Stefan
Comments: 2
Category: KendoReact
Type: Feature Request
4
When the grid is being initiated, the columns passed into the grid as children will be filtered by "child.type === GridColumn" to check whether it is indeed a GridColumn. With React Hot Loader, each React element will be modified to be a ProxyFacade, and the Grid will not recognize its children anymore.
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.
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: 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.

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.
Completed
Last Updated: 27 May 2021 17:00 by ADMIN
Created by: iConect Developer - Mike
Comments: 2
Category: KendoReact
Type: Feature Request
4

This support ticket is a feature request for a React version of the DropDownTree component: https://demos.telerik.com/kendo-ui/dropdowntree/index

For now I've hacked together something using a span styled like the collapsed DropDownTree, a React Popup and a React TreeView.  It would be great if this control could be adapted for React and added to the dropdowns package.  Unless there is an easy way to accomplish this using the React Dropdown and the React Treeview?

Unplanned
Last Updated: 27 Apr 2021 10:29 by ADMIN
Created by: Matej
Comments: 0
Category: KendoReact
Type: Feature Request
4

Add the ability to customize the Filter component elements.

For example:

1) Customize the fields' DropDownList.

2) Customize the Add expression button. It could be used to open a Dialog with a list of expressions.

Unplanned
Last Updated: 07 Jan 2022 12:27 by ADMIN
Created by: Ruud
Comments: 5
Category: KendoReact
Type: Feature Request
4

Hi,

I'm using the tabstrip control for a complex form for the user to fill out. I am trying to find a way to preload all contents of each tab in the tabstrip to ensure all the controls are rendered. This is required for my validations to work correctly.

I did not see any property on the Tab or TabStrip control to achieve this. Am I missing something?

Regards,

Ruud

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: 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
Unplanned
Last Updated: 27 Apr 2021 10:24 by ADMIN
Created by: Rohan
Comments: 0
Category: KendoReact
Type: Feature Request
4

Provide built-in scrolling of the Chart.

It should work similar to the pannable but allows scrolling with the mouse wheel instead of zooming.

The required end result is similar to this:

https://stackblitz.com/edit/react-rgpxmk-nrntv1?file=app/main.jsx

Unplanned
Last Updated: 27 Apr 2021 10:17 by ADMIN
Created by: Steven
Comments: 4
Category: KendoReact
Type: Feature Request
4

The Angular ButtonGroup has a 'selection' property that is not present in the React ButtonGroup. 

This functionality would be nice to have in React.

 

The following code snippet is the temporary fix that has been provided to me by support to mimic Angulars functionality in React.  
import React from 'react';
import ReactDOM from 'react-dom';

import { Button, ButtonGroup } from '@progress/kendo-react-buttons';

class ButtonGroupContainer extends React.Component {
  state = {
    selected: null
  }
  groupButtonClick = (e) => {
    this.setState({
      selected: e.target.id
    })
  }

  isSelected = (index) => {
    return index === parseInt(this.state.selected) ? true : false
  };

  render() {
    return (
      <div className="row">
        <div className="col-xs-12 col-sm-6 example-col">
          <ButtonGroup>
            <Button togglable={true} id={1} selected={this.isSelected(1)} onClick={this.groupButtonClick}>
              Bold
                     </Button>
            <Button togglable={true} id={2} selected={this.isSelected(2)} onClick={this.groupButtonClick}>
              Italic
                     </Button>
            <Button togglable={true} id={3} selected={this.isSelected(3)} onClick={this.groupButtonClick}>
              Underline
                     </Button>
          </ButtonGroup >
        </div>
      </div>
    )
  }
}
ReactDOM.render(
  <ButtonGroupContainer />,
  document.querySelector('my-app')
);

Unplanned
Last Updated: 27 Apr 2021 10:03 by ADMIN
Created by: zenit1
Comments: 1
Category: KendoReact
Type: Feature Request
4

Hey

Small question: it is exists some approach to make Tabs in TabStrip reordable ?

 

Best

Serge

Completed
Last Updated: 16 Sep 2021 18:04 by ADMIN
Created by: Pavan Kumar
Comments: 1
Category: KendoReact
Type: Feature Request
4
Add a heatmap component

This component purpose is similar to the GitHub commits graph:

Unplanned
Last Updated: 07 Apr 2021 05:05 by ADMIN
Created by: Stanley
Comments: 1
Category: KendoReact
Type: Feature Request
4

Hi,

Currently, we're facing a performance issue in react scheduler, when it has more grouping items(i.e. browser hangs indefinitely). I'm requesting the feature based on the below ticket

https://www.telerik.com/account/support-tickets/view-ticket/1513927

Unplanned
Last Updated: 27 May 2021 05:24 by ADMIN
Add section highlighting and keyboard navigation to the MaskedTextBox.

This is similar to the DateInput functionality to move between the different sections with the arrow keys.

This functionality should be optional, not always on.
Unplanned
Last Updated: 14 Jul 2021 07:59 by ADMIN

Hello,

The Form component does not allow me to submit unless I modify the initial values. We have a Form that is provided with initial values that may not need to be modified by the user first - the data is all valid and acceptable. The user, currently, would need to purposefully modify one of the Field values in order to get the Form to realize that it can be submitted.

I'm aware of the submit click event but that event does not perform any validation.

I believe there needs to be some middle area where the Form can be provided initial values and be allowed to submit without having to modify the form first.

I have created a code sample showing the scenario below ...

https://stackblitz.com/edit/react-wf5veh-reyjj3?file=app/main.jsx

Thank you