Completed
Last Updated: 22 Sep 2021 07:28 by ADMIN
Created by: TechShare
Comments: 9
Category: KendoReact
Type: Feature Request
40
In other Kendo Grid libraries, the grid columns auto set their widths depending on the content in the column. This feature is not available in KendoReact, can it be added?
Unplanned
Last Updated: 27 Apr 2021 10:14 by ADMIN
Created by: Nick
Comments: 3
Category: KendoReact
Type: Feature Request
1
Is there an option where when the PanelBarItem is collapsed it collapses the content and does not remove it from the DOM so we can keep the state of the content in that control?
Unplanned
Last Updated: 27 Apr 2021 10:14 by ADMIN
Created by: Ting
Comments: 0
Category: KendoReact
Type: Feature Request
3
Add animation to the Dialog and Window components.

Currently, this is possible with CSS animation only:

https://github.com/telerik/kendo-react/issues/326

Unplanned
Last Updated: 27 Apr 2021 10:14 by ADMIN
Created by: Ting
Comments: 0
Category: KendoReact
Type: Feature Request
2
Add the virtualization feature to the ListView component.
Completed
Last Updated: 23 Oct 2020 09:37 by ADMIN
"@progress/kendo-react-grid""^3.15.0"
  1. Configure a Kendo React Grid with paging on a react-bootstrap tab that is hidden on initial load
  2. Navigate to the tab - the Grid is rendered with truncated paging controls and no item count
  3. Resize the screen in any way - the full paging controls and item count are restored

Is there a workaround for this issue?

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

I'm looking at implementing a Chart with multiple ChartPane, each with their own legend displaying only the series displayed in the respective pane.

Here is an example of the layout with separate charts: https://stackblitz.com/edit/react-xtyhbu-muedhd?file=app%2Fmain.js 

After speaking with support, they suggested I created a feature request here.

Completed
Last Updated: 28 Jul 2023 12:00 by ADMIN
if yes, do you have any example?
Completed
Last Updated: 16 Sep 2021 18:06 by ADMIN
Created by: Chris
Comments: 1
Category: KendoReact
Type: Feature Request
3

Add KendoReact PivotGrid.

Currently, there is only a wrapper:

https://docs.telerik.com/kendo-ui/third-party/react#pivotgrid

Completed
Last Updated: 27 Apr 2021 10:00 by ADMIN

Hello,

 

After taking a look at your example in the documentation here (which doesn't seem to be working) https://www.telerik.com/kendo-react-ui/components/charts/chart/elements/selection/#using-selection-as-navigator 

I fixed the onSelectEnd function and got it working. However, the selection chart is reloading the data every time onSelectEnd changes this.state.min and this.state.max.

Here is the example:

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

As you can see, this makes for a clunky UI.

 

If this isn't a bug, do you have suggestions on how to fix this?

Thanks,

Orla

Completed
Last Updated: 30 Jul 2023 05:15 by ADMIN
Created by: Matej
Comments: 1
Category: KendoReact
Type: Bug Report
0

Hi,

I have Scheduler vertical timeline with an user group and more users I add the wider is every slot.  Example 2 users https://stackblitz.com/edit/react-dttghr?file=app%2Fmain.jsx . Example 4 users https://stackblitz.com/edit/react-dttghr-a3nor3 the slot is double in width in comparation with 2 users. Can I control this somehow?

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

Allow sorting per column by a field other than the displayed field on the column. This goes for group sorting as well, when grouped by a certain field, the groups can only be sorted by that field, when we actually need those groups sorted in an arbitrary order we have defined in another field on the data.


https://github.com/telerik/kendo-react/issues/633

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

Add virtualization to the TreeView component to handle large trees. 

Each node should be possible to have open at all time.

Each node should have the possibility to be selectable with a checkbox.

Completed
Last Updated: 16 Sep 2021 18:08 by ADMIN
Created by: Felix
Comments: 1
Category: KendoReact
Type: Feature Request
3

Add a Breadcrumb component.

Similar to what we have in Kendo UI for jQuery:

https://demos.telerik.com/kendo-ui/breadcrumb/index

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:22 by ADMIN
Created by: Gaurav
Comments: 0
Category: KendoReact
Type: Feature Request
2

Add render function/prop for the ColorPicker popup.

This will allow rendering custom elements inside the ColorPicker Popup.

Unplanned
Last Updated: 31 Jul 2020 06:31 by ADMIN
Created by: Dan
Comments: 1
Category: KendoReact
Type: Feature Request
2

I am looking for added support for multi drag and drop and the ability to select multiple days as this is available in the jquery version:

https://demos.telerik.com/kendo-ui/scheduler/event-selection

Unplanned
Last Updated: 27 Apr 2021 10:23 by ADMIN
See here:

https://demos.telerik.com/kendo-ui/numerictextbox/events

We would like this as we need to distinguish between a change due to a user typing and a change due to a spin.

To hack around this we will probably need to create a DOM event on click on the spin buttons or something
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 Jul 2020 07:21 by ADMIN

With the ArcGauge component, when you set the rangeLineCap to something other than 'butt' (ie:  round or square), the indicator does not line up with the tick lines.  This leads to misleading values.  Please look at this StackBlitz:

 

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

 

This will show the comparison between round and butt rangeLineCaps. 

From the screenshot as well, the ArcGauge on the right looks like the value is greater than 0, resulting in the user being mislead on the result.

Completed
Last Updated: 20 Oct 2020 10:25 by ADMIN

When using the <Window> component, there is an issue trying to maximize, when a parent element has positioning (ie:  position: absolute, position: relative).  The calculation for defining the width uses window.innerWidth (similar for height).  However, for placement, it uses top and left = 0.  

You can see a sample of this on StackBlitz:

https://stackblitz.com/edit/react-59kqss

This is a straight copy of https://www.telerik.com/kendo-react-ui/components/dialogs/window/controlled-mode/, but added the additional styles to the parent <div>.

Version is 3.14.

 

Thanks.