Pending Review
Last Updated: 29 Sep 2023 17:23 by Ankit

I have one column that contains mix of boolean and string values. When I attempt to apply a filter function to that column, it generates an error for the boolean value true because indexOf cannot be performed on a boolean. When I have other formats along with strings and I use filter="text", I would like the value to be converted to string in the filter function rather than modifying the data on my end before calling the filter function, because that would actually be incorrect data.

Example

https://www.telerik.com/kendo-react-ui/components/grid/filtering/

If I change

<Column field="Discontinued" width="190px" filter="boolean" /> 

to

<Column field="Discontinued" width="190px" />

and then search for anything in that filter it throws error.

 

 

Maybe if you make the `filter="text"` always convert the all the values to string values that would help resolve the error

Unplanned
Last Updated: 29 Sep 2023 12:54 by ADMIN
Created by: Flavio
Comments: 1
Category: PDF Viewer
Type: Feature Request
0

Add NavigationPane to the PdfViewer similar to the one available in the PdfViewer from the Telerik UI for WPF suit:

https://docs.telerik.com/devtools/wpf/controls/radpdfviewer/default-ui 

Unplanned
Last Updated: 21 Sep 2023 07:58 by ADMIN
Created by: Ryan
Comments: 1
Category: KendoReact
Type: Feature Request
1
I'd like an npm package for a telerik report designer, just like the one for the telerik report viewer. Ideally if it was a react component too, like the report viewer package.
In Development
Last Updated: 14 Sep 2023 07:29 by ADMIN

Title basically says it all. Issue can be easily observed in the basic Multiselect with virtualization example:

  1. Open the dropdown
  2. Scroll to the bottom end
  3. Close the dropdown
  4. Open it again - popup's scroll position is incorrect and therefore shows blank.

What seems strange is that I cannot reproduce this issue with the combobox virtualization, although I found a somewhat similar bug submitted for the combobox - https://github.com/telerik/kendo-react/issues/1450 

Unplanned
Last Updated: 13 Sep 2023 05:21 by ADMIN
Created by: Stefan Nacke
Comments: 11
Category: Scheduler
Type: Feature Request
6
Hello Support-Team,

I have created a project with Kendo UI React and use the component "Scheduler". I would like to display multi-day events. Unfortunately, the event is then split per day on a separate bar:

https://stackblitz.com/edit/react-vwe3kf?file=app%2Fmain.jsx

I have not found a way so that only one bar is displayed per multi-day event. Is this a bug, or can this be configured somehow?

I thank you for a short feedback!

Kind regards,
Marvin Beyer
Unplanned
Last Updated: 12 Sep 2023 07:00 by ADMIN
Currently, users do not have the ability to set their timezone. When clicking on the 'Today' or 'Now' button within the datetimepicker component, the default behavior should be to display the time in UTC/GMT if that timezone is selected.
Unplanned
Last Updated: 08 Sep 2023 06:36 by ADMIN

 

Environment (OS, Application, Versions)

Repro Steps

  1. Open URL: Column Menu - Kendo React (telerik.com)
  2. Navigate to context menu controls available on column headers of Basic usage table.
  3. Verify if context menu is accessible using keyboard.

 

Actual Results

The 'context menu' controls available on the column headers under the basic usage table are not accessible using the keyboard.

 

Expected Results

The 'context menu' controls available on the column headers under the basic usage table should be accessible using the keyboard.

 

Unplanned
Last Updated: 07 Sep 2023 08:35 by ADMIN
Created by: DONNA
Comments: 1
Category: Notification
Type: Feature Request
0

Hii,

We've certain background activities happening in our web app based on types, and we want to acknowledge user that these activities are completed. so for that we need to group all that same category notifications into one notification and on that notification, we'll have one view all button, so if you click on that it will open all those notifications for that category and also, we can close that as well from there.

right now, we've used standalone single notification to prompt user but since now we want groupable notification, can you provide working example that how can we achieve this using Kendo Notifications. I've attaching sample design so you can get it better.

first image depicts one notification that combines all notifications that falls under it and second is expanding state when you can click on view All.

Completed
Last Updated: 05 Sep 2023 14:17 by ADMIN

As per the subject, you can no longer use the Calendar to select a date in a month before the currently selected Date. Please see the following demo:

https://stackblitz.com/edit/react-xc2oxm-wgsfhy?file=app%2Fmain.tsx

Steps to reproduce:

  • Click on the Calendar button
  • Click on any month before the currently selected month
  • Click on any date in the month
  • Observe that the day is changed correctly but the month is incorrectly incremented by one

This error is not observed if you:

  • type in a date
  • use the mousewheel to scroll to the earlier date instead of clicking on the month
  • use Firefox instead of Chrome

We aren't certain but don't believe this error was present before the latest Chrome 113 update. The error is reproducible in all versions of KendoReact from 5.2.0 onwards.

Unplanned
Last Updated: 04 Sep 2023 15:43 by ADMIN

At the moment, in order to see the suggestion list display you need to enter at least one-character prefix. It would be useful to have an API property that would allow passing an integer value to configure the length which would make the list appear. For example, if you set the value to 3, you would get no suggestions until you entered a three-character prefix. On the other hand, if the value was set to 0, a click on the selector would be enough to see all of them.

Best regards

Wojciech WÄ…s

Completed
Last Updated: 01 Sep 2023 10:03 by ADMIN
Created by: Chunxing
Comments: 2
Category: KendoReact
Type: Feature Request
4
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.
Unplanned
Last Updated: 30 Aug 2023 12:02 by ADMIN

In one of the latest versions of Flat Color Picker "format" property has been added to enable customizing the default input field that is presented to users, before it was always RGB. However, I found that the value that appears as an argument in "onChange" method is still RGB, no matter which format has been chosen.

For example:

const [color, setColor] = useState("000000");

const setColorFromPicker = useCallback(
  (event: FlatColorPickerChangeEvent) => console.log(event.value),
  [],
);

return (<FlatColorPicker
  value={color}
  format="hex"
  onChange={onChange}
/>

The value presented in the log will be "rgb(0, 0, 0, 0)" despite the format being set to "hex".

It would be very useful to have this configurable as well. I can see three possible solutions:

  • make "format" property affect both the input and the output; that would make the scenario above produce "#000000" log;.
  • create two separate properties, e.g. "inputFormat" and "outputFormat";
  • include both values in the passed structure, so that e.g. I could use "event.value.hex" to get "#000000" and "event.value.rgb" to get "rgb(0, 0, 0, 0)"

Best regards

Wojciech WÄ…s

Planned
Last Updated: 28 Aug 2023 13:42 by ADMIN
Created by: prabu
Comments: 3
Category: Toolbar
Type: Feature Request
1
 I have explore and created the kendo react  toolbar by referring the link https://stackblitz.com/run/?file=app%2Fmain.jsx  and i tried to resize the browser and the toolbar moves to multiple rows.But i expected the toolbar height is fixed and and it will be always single row like the syncfusion toolbar (https://ej2.syncfusion.com/react/documentation/toolbar/responsive-mode/)
Under Review
Last Updated: 21 Aug 2023 11:03 by ADMIN

I would like to add two tables side by side in Telerik Editor two tables side-by-side like I would in google docs for ex:

Unplanned
Last Updated: 21 Aug 2023 10:59 by ADMIN
Created by: Jeffrey
Comments: 1
Category: KendoReact
Type: Feature Request
0
It would be nice to have size tokens for adjusting the height/paddings for the DataGrid component cells, head, pager, etc. 
Unplanned
Last Updated: 21 Aug 2023 06:40 by ADMIN
Created by: Jason
Comments: 5
Category: ComboBox
Type: Feature Request
2

Using a ComboBox with suggest=true, it will suggest values using a case-insensitive comparison; however, when tabbing out of the combobox, it will only select the suggested value if the value typed so far matches exactly.

Using the example from the KendoReact documentation, if I typed 'Aus' then it will suggest Austria, and if I tab out, Austria is selected. If I type 'aus' it will also suggest Austria, but when I tab out, nothing is selected.

Looking at ComboBox.tsx in the source code, it seems like this hard-coded true on line 471 is preventing this behavior:

const valueIndex = getItemIndexByText(data, text, textField, true);

Is there any way to make it select the suggested value on blur even if the cases don't match? Note that this is the default behavior of the Angular ComboBox.

Unplanned
Last Updated: 17 Aug 2023 12:37 by ADMIN
Created by: ACHAL
Comments: 1
Category: Spreadsheet
Type: Feature Request
6

Hi, 

I'm in need of the dropdown feature in spreadsheet cells. I had been using the Kendo Spreadsheet React Wrapper which had the dropdown feature but since the latest update to Kendo React Spreadsheet I have been facing issues. Please try to get this feature as soon as possible and I'm sure this will be helpful for other users, too.

Thank you.

 

Unplanned
Last Updated: 17 Aug 2023 07:30 by ADMIN
Created by: Ahmed
Comments: 1
Category: Editor
Type: Feature Request
4
I would like to be able to move tables inside Telerik Editor using (mouse) drag and drop like I do in Google Docs
Unplanned
Last Updated: 04 Aug 2023 12:19 by ADMIN
Created by: Bernd
Comments: 1
Category: KendoReact
Type: Feature Request
1

Hi.

The Calendar component does not allow for selecting multiple dates or range selection. Only single selection of dates is possible.

As implemented in the MultiViewCalendar component, it should be possible out of the box to add a "mode" attribute and set it to "multiple" or "range". This would make the two components more consistent and aligned.

Thanks,

Regards,

Bernd

Unplanned
Last Updated: 04 Aug 2023 10:10 by ADMIN
Created by: Allen
Comments: 1
Category: Map
Type: Feature Request
1

Hi,

I am in need of a min-map control like https://react-leaflet.js.org/docs/example-react-control/. And would like to make it using the existing control. There doesn't appear to be any examples of a similar usecase for Map control. (unsure how dynamically set the bounds, center or zoom of the Map control via other page controls, e.g zoom appears to be an init prop only)

Could someone write up a simple example for me please of an inset mini map for navigation like the react-leaflet example above? 

Thanks,

 

Allen

1 2 3 4 5 6