Unplanned
Last Updated: 17 Apr 2024 14:04 by ADMIN
Created by: Kendo UI
Comments: 0
Category: TreeList
Type: Feature Request
6

Feature Request

Currently, KendoReact TreeList doesn't offer a built-in way to achieve selection behavior where selecting a parent node automatically selects all its children, and vice versa (deselecting all children deselects the parent). This feature would be highly beneficial for use cases involving hierarchical data structures where managing parent-child selection is crucial.

Proposal

Introduce a new option for the selectable prop, potentially named propagateSelection or recursiveSelection (similar to applyCheckIndeterminate provided in the TreeView component ). When set to true, it activates the desired behavior where selecting a parent selects all children, and deselecting all children deselects the parent.

Related GitHub item - https://github.com/telerik/kendo-react/issues/2174 

Unplanned
Last Updated: 17 Apr 2024 11:57 by Janki
Created by: Janki
Comments: 0
Category: Data Grid
Type: Feature Request
1

I think this would be a great feature to have out-of-the-box, and hopefully it's something easy to add from your end. UX-wise, it's really difficult to wrap your head around a non-alphabetized list, especially when the list is used for the special purpose of filtering -- you now have to filter down the list before you can filter the grid itself, which adds more overhead for the user.

I understand that Excel is not the end-all and be-all, but Excel also sorts it by default:

 

Full discussion can be found here - https://www.telerik.com/forums/how-to-make-gridcolumnmenucheckboxfilter-be-alphabetical-order

Unplanned
Last Updated: 16 Apr 2024 12:31 by Stoyan
We have implemented an editable Scheduler, and we need to make a development related to the selection of events within the calendar. We need support to know how to consult the events that are selected, and how to detect selection changes in these, in order to mantain a list of "active selections".

We are not able to find where is stored the information about which events are selected. We have found information about overloading the Scheduler prop editItem with a CustomEditItem and overriding this event to detect when a task is selected.

  const handleClickAction = (event) => [
    {
      type: event.syntheticEvent.shiftKey
        ? ITEMS_SELECT_ACTION.add
        : ITEMS_SELECT_ACTION.select,
    },
  ];

With this we could detect when a certain event is selected. But we are still missing the part about when they are unselected. If we click outside the events, we get the selection removed, but we have no way to detect the event of this, and therefore we can't update our list of selections.

Can you give us support on how we can get the information about the selections, and keep it updated at all times? Thank you,

Unplanned
Last Updated: 11 Apr 2024 11:10 by ADMIN
Repro-Steps:
  1. open the given URL using valid credentials.
  2. Navigate to 'Reply' button and invoke it.
  3. Navigate to 'table' button and invoke it.
  4. Now, try to navigate to table cells to select the size of the table and observe

Actual Result:

After invoking 'table' button, user is unable to select the size of the table i.e, Keyboard focus is not going to 'Insert row and column cell components.

Tab index property is not defined.

 

Expected 
Control(s) must be accessible to keyboards and other assistive technology. Common causes of this problem include a) the element does not have a proper role assigned, b) the element needs tab-index="0" attribute to be focusable, or c) the component is not registering keypresses.  

User should be able to navigate to insert row and column cell components to select the size of the table.


User Impact 
When interactive components are not accessible, assistive technology users are blocked, which leads to everything from inaccessible content, features, and functionality, up to entire applications or sites. 

Unplanned
Last Updated: 10 Apr 2024 12:23 by Fabian

The GridHelper is defined in a separate file, and this is the way we can use it - https://www.telerik.com/kendo-react-ui/components/grid/getting-started/gridhelper/

 

However, I prefer if it is exported from the Grid package, and is maintained from there.

Under Review
Last Updated: 10 Apr 2024 04:25 by ADMIN
Created by: Paxcom
Comments: 2
Category: KendoReact
Type: Feature Request
3

in the provided video, an example of the unordered list has been taken up. But the same is applicable to the numbered list as well.

When a user tries to add a new point to an unordered list in a new line and then clicks the backspace, the unordered list remains. Pressing 'Enter' to start a new line shows the unordered list bullet points again.

Can we update it so that on   Pressing backspace to remove the unordered/ordered list should delete it entirely and should not leave any highlighting in the description box editor field.

 

video : https://www.loom.com/share/480debbe4f2648339ecb80cd9b6ed853?sid=3914f5dc-f477-4afd-a55d-df4a26603da7   

please go through video where i have provided , example of current behavior and expected behavior 

Unplanned
Last Updated: 05 Apr 2024 21:20 by Amit
Created by: Patrick
Comments: 8
Category: KendoReact
Type: Feature Request
8

The KendoReact Spreadsheet component has been released.

There are a few features that are missing compared to the jQuery version, and filtering rows based on column filters is one of them. 

Until this feature is added (along with context menus), we won't be able to use the Spreadsheet component for what we need to build, so we will have to continue wrapping the jQuery component. The object provided by the spreadsheet ref can filter programatically based on the (undocumented in KendoReact's docs) `range.filter()` method, but this would take a lot of time to implement what the jQuery version already has.

Unplanned
Last Updated: 05 Apr 2024 10:39 by ADMIN
Created by: Julian Turner
Comments: 5
Category: DatePicker
Type: Feature Request
0
I use the DatePicker extensively in our application as people are entering in weather data. They often want to change the date by a day or two, so they find it annoying to open up the whole calendar to go back a single day. I think that the ideal UX would be to have the equivalent of the Spin Buttons on the DatePicker that exist on the DateInput. So, there would be the calendar for the date picker and the spinners so users can choose what works best for them.
Unplanned
Last Updated: 04 Apr 2024 11:22 by ADMIN
Created by: philip
Comments: 7
Category: KendoReact
Type: Feature Request
1

How to get a selected object for AutoComplete's onChange(...)?

<AutoComplete data={[{id:10, name:"test"}]} textField="name"/>
Planned
Last Updated: 03 Apr 2024 07:28 by ADMIN
Created by: Owen
Comments: 3
Category: KendoReact
Type: Bug Report
2

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:

Unplanned
Last Updated: 29 Mar 2024 15:43 by ADMIN
Created by: Julian Turner
Comments: 2
Category: DateInput
Type: Feature Request
1
The DateInput spinners default to changing the first section of the date, which in my case would be the month. However, my users are going to want to change the day unless they have selected a date part like the year. I would appreciate a way to specify which date part the spinners should control if no part of the input is selected?
Unplanned
Last Updated: 29 Mar 2024 14:04 by Simon
Created by: Simon
Comments: 0
Category: TreeList
Type: Feature Request
1
It would be beneficial if the TreeList had the option to render a detail row out of the box via a prop as it is for the Grid.
Unplanned
Last Updated: 29 Mar 2024 08:26 by Thomas
Created by: Thomas
Comments: 0
Category: KendoReact
Type: Feature Request
1
To enhance UX, it should be better that when the user clicks between the label and the checkbox/radiobutton, it actionnates the checkbox/radiobutton.

Today this is how a radiobutton is structured. 

An improvement would be to nest the input inside the label, so it does what i said above, eg. :

 <label>
 <input type="checkbox" id="myCheckbox" name="myCheckbox">
 Click me to toggle the checkbox
 </label>

This would greatly enhance UX and is very common in web development.
Unplanned
Last Updated: 26 Mar 2024 14:21 by ADMIN
Created by: James
Comments: 3
Category: Upload
Type: Feature Request
0

This feels like an obvious requirement, but maybe I'm missing something. We're using the Upload component allowing users to upload files to be later referenced and accessed. Would it be possible to add configuration options to display a download icon and hook up an onDownload handler, next to each uploaded file, like it currently does for the "remove" operation? I appreciate you can create a custom UI for the whole component, but then we lose the built-in functionality.    

Thank you.

Unplanned
Last Updated: 25 Mar 2024 17:43 by ADMIN
Created by: Owen
Comments: 6
Category: DatePicker
Type: Bug Report
3

Hello,

We've been experiencing a weird behavior with the date picker element. We wanted to have an auto advancing cursor that moves from date -> month -> year without the user having to manually press the arrow keys.

We based our solution off this previous method in your JQuery element. However the React element has some buggy behavior when it comes to updating existing date values in the input that makes this method impossible. (the functionality works correctly in the JQuery version of the library, just not React)

When updating an existing value in the box from a single digit value (e.g. 01, 02, 03, 04, but not 10, 11, 12) instead of overwriting the existing value it appends the new number the user entered. For example, if a 01, is in the box and the user types 2 it becomes 12, when it should have become 02.

This can be especially confusing for the user when working with named dates (e.g. "Jan", "Feb",  "Dec", etc) since they do not see the numbers involved. If the user is updating Jan, and they press 2. It should update to Feb not Dec...

I've attached a GIF of the problem below as I've described

Unplanned
Last Updated: 20 Mar 2024 07:06 by Jan
Currently, the TimePicker and DateTimePicker do not have the toggleButton property. This prop is present for the DatePicker but it should also be present for the rest of the dateinput component to keep the API consistent.
Unplanned
Last Updated: 19 Mar 2024 09:15 by Josh

Currently, hovering the draghandle shows the title "Drag". Instead, it should show the current value of the Slider.

With the current implementation, this is only possible by rendering a ToolTip component and customizing it:

Unplanned
Last Updated: 18 Mar 2024 14:09 by Filip
Created by: Filip
Comments: 0
Category: KendoReact
Type: Feature Request
1
A component that allows you to upload and display powerpoint files.
Unplanned
Last Updated: 18 Mar 2024 14:08 by Filip
Created by: Filip
Comments: 0
Category: KendoReact
Type: Feature Request
1
A component that allows you to upload word files and display them.
Unplanned
Last Updated: 14 Mar 2024 20:09 by Mia
Created by: Mia
Comments: 0
Category: KendoReact
Type: Feature Request
1
It would be beneficial if the TreeList could display children,  for example, in this demo, if I search for Anika Vega, I would like the tree to return Daryl Sweeney and all the children nodes of Anika:

https://stackblitz.com/edit/react-ze6brv?file=app%2Fmain.tsx
1 2 3 4 5 6