Completed
Last Updated: 01 Sep 2023 10:03 by ADMIN
Created by: Chunxing
Comments: 2
Category: KendoReact
Type: Feature Request
5
Our app does alot of PDF viewing and manipulation and we currently are using some generic pdfjs component. We would really like to be able to use the feature rich pdf viewer from jQeury in react more easily that crating a wrapper for it.
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: 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: 08 May 2022 16:19 by ADMIN
Created by: Fabian
Comments: 9
Category: KendoReact
Type: Feature Request
4

Hello

I'm using the menu component version 4.13

I'd like to change the style of the active menu item but could not find any examples. Here's one of my menu items

            <MenuItem text="Location Lookup" cssClass={"nav-item nav-link"} data={{ route: "/locations" }}></MenuItem>

i'm following your example to do the routing

function onSelect(event) {
  history.push(event.item.data.route);
}

I'm using react router dom.

Do you have an example for how to change the css of the active menu item?

Thank you.

Fabian

 

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. 

 

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: 25 Mar 2022 08:03 by ADMIN
Created by: Sairoopa
Comments: 3
Category: KendoReact
Type: Feature Request
4

Hi Team,

While navigating using keyboard tab key focus is not moving to multiple controls such as Bar graphs and legends in kendo React Charts.

Screen reader should narrate proper name, role and value for the controls.

NVDA Focus is not moving to the bar graphs and legends and it is not narrating proper value for the bar graphs and legends.

which includes following components

  • Chart
  • ChartArea,
  • ChartSeries
  • ChartSeriesItem
  • ChartCategoryAxis
  • ChartCategoryAxisItem
  • ChartValueAxis
  • ChartValueAxisItem
  • ChartLegend
  • ChartTooltip
  • ChartSeriesItemTooltip


Can you please suggest if any,

 

Thanks & Regards,

Sairoopa.Ch

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?

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: 07 Jan 2022 11:18 by ADMIN
Created by: Kelvin
Comments: 3
Category: KendoReact
Type: Feature Request
4

Hi support,

I would like to know what's the best way to set the modal dialog to the bottom of the page, and add animation for it to slide up to open and slide down to close.

Thanks!

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: 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: 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

Unplanned
Last Updated: 05 Jan 2024 07:36 by ADMIN

When a Taskboard column overflows vertically or the columns overflow horizontally, there is no way for the user to drag a task card in a position that is not visible at the start of the drag in one smooth motion and one has to resolve to multiple drag 'n' drops and subsequent manual scrolls. Ideally when a card is being dragged over the borders of the overflown container, it should automatically scroll to bring the invisible elements into the viewport. Video of current behaviour is attached below, together with the requested behaviour.

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: 28 Sep 2021 10:05 by ADMIN
Created by: Gokul
Comments: 5
Category: KendoReact
Type: Feature Request
4

Hi,

 

Hope you are doing good.

 

We have requirement that, there are some cards (Each cards are separate component like chart, grid, etc). Also have separate multiple grids like 2*2, 4*4. We need to drag the cards and drop it in any of the grid. 

 

For your ref, the feature is somewhat like this https://demos.telerik.com/kendo-ui/cards/drag-and-drop .

 

Please let me the example. Also revert me if you have any doubts.

 

Thanks,

Gokul

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

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

Unplanned
Last Updated: 04 Oct 2022 08:32 by ADMIN
Created by: Abhinav Mishra
Comments: 1
Category: KendoReact
Type: Feature Request
4

Hi Team,

We need a break (<br>) tag on pressing enter key instead of paragraph tag in React Editor. Currently break tag comes on pressing Shift + Enter keys. We want a mechanics to override default functionality of enter from paragraph to break tag.

Regards, 

Abhinav

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.