Unplanned
Last Updated: 27 Apr 2021 10:31 by ADMIN
Please add an Encoded Prop to the GridColumn for KendoReact that works like the "encoded" property on columns in the jQuery version to allow us to pass unencoded Html to the cells of our KendoReact Grids. Thanks so much for any assistance in this matter!
Unplanned
Last Updated: 27 Apr 2021 10:30 by ADMIN
Created by: Denis Susac
Comments: 1
Category: KendoReact
Type: Feature Request
0

Hi,

  we have a feature request as per description, value isn't changed when manually entering numbers in the field, it only changes when selecting a presented date. When manually entering date, value remains null so reset is actually changing null to null, not the entered value to null. Your colleague mentioned that the feature of exposing mask to be controlled would make it possible to clear the mask.
Please refer to this github issue for more detailed information, containing stackblitz example and gifs of an user case, as it was an ongoing discussion.
Please implement an option to properly reset partially entered dates.

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

Planned
Last Updated: 27 Apr 2021 10:30 by ADMIN
Created by: Ruslan
Comments: 3
Category: KendoReact
Type: Feature Request
2

I would like to request a new Kendo React Grid column editing option so that users can navigate editable columns using the keyboard. This feature should be similar to "navigatable" option from Kendo jQuery grid example - https://demos.telerik.com/kendo-ui/grid/editing

Thanks.

Unplanned
Last Updated: 27 Apr 2021 10:29 by ADMIN
Created by: Soft-Designs
Comments: 0
Category: KendoReact
Type: Feature Request
7

Create the KendoReact Media Player component.

Similar to the Kendo UI for jQuery component:

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

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: 27 Apr 2021 10:28 by ADMIN
Created by: Christian
Comments: 1
Category: KendoReact
Type: Feature Request
2

Request:

- provide a boolean property "virtualScrolling" on component GridColumnMenuCheckboxFilter which allows rendering a large list of filter options without delay

Discussion:

- https://www.telerik.com/forums/gridcolumnmenucheckboxfilter-virtual-scrolling

Use case:

- there are a lot of options to filter already in memory

- the filter dropdown has to open quickly (it opens slowly now, because there are so many options)

- after opening, the user sees a huge list (i.e. a long scrollbar)

- so he starts making the list of options smaller using the search input

Here's a screenshot with 100 options. 

 

Alternatives:

From a developer point of view I think a scrollable filter is the most convenient way to handle the problem.

An alternative would be to provide a handler whenever the user selects a combobox in the GridColumnMenuCheckboxFilter. Then we could cut the number of options after a threshold and an option / combobox labelled "show more". When this is clicked, the filter options are re-rendered, the lists gets longer - and the user will get annoyed and will making the list of options smaller using the search input.

An other alternative would be to have a possiblity to force the user right away to use the search box. Instead of showing the list of checkboxes a text would be shown: "1258 options. Please refine your search input." But this would be a more invasive option.

Unplanned
Last Updated: 27 Apr 2021 10:28 by ADMIN
One thing we end up doing quite a bit of writing custom Kendo Form components. A lot of these seem like they could exist out-of-the-box. For example, it'd be nice to have a DropDownList as a Form Input, without having to code the custom component for it.
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: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: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: 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.

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: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: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: 27 Apr 2021 10:15 by ADMIN

Problem:

The DateTimePicker does not work in IE11 due to it's failure to fully support the shorthand syntax for flex (https://github.com/philipwalton/flexbugs#flexbug-4). In order for it to work in IE11 flex-basis needs a unit defined and therefore does not support calc() in this scenario.

Potential Fix:

If you break out flex-grow, flex-shrink and flex-basis then calc() can be used for flex-basis.

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.
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: 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:13 by ADMIN
Created by: Shannon
Comments: 1
Category: KendoReact
Type: Feature Request
10

Hello support team,

Can you please provide an example in kendo react to upload > crop > save cropped image. My use case is that user should be able to choose, crop and save their profile photo.

Thank you.

Unplanned
Last Updated: 27 Apr 2021 10:12 by ADMIN
Created by: Papiya
Comments: 3
Category: KendoReact
Type: Feature Request
0

Hi There,

 

This is the kendo ui for jQuery scheduler we use in our older version of product. Note that the resources are across the top, and dates down the side.

 

 

We have switched to react and we want similar view. This is the closest we can get.

The resources are on left hand side so we cannot see all the resources. 

Kendo-ui for jQuery has an additional boolean property ‘date’ (https://docs.telerik.com/kendo-ui/api/javascript/ui/scheduler/configuration/group) which groups the view by date down the left hand side, and resources across the top.  There is no alternate property available in kendo-react-ui which will result in same appearance as it does in kendo-ui.

We are using kendo scheduler version 4.0.0.

Is there any way to achieve this? Do we have to implement a custom view? If so how?

 

- Papiya