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. 

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: 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 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: 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: 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
Duplicated
Last Updated: 29 Feb 2024 17:14 by ADMIN
Created by: eDAD
Comments: 0
Category: KendoReact
Type: Bug Report
0

Environment (OS, Application, Versions):

OS Version: 22H2 (OS Build 25352.1)
Edge Dev: Version 121.0.2277.112 (Official build) (64-bit)

Repro Steps:

   1. Open https://codepen.io/oneID/pen/LYaGREP and turn on NVDA.
   2.Navigate to Populate grid and activate it using enter key.
   3.Navigate to Expand button under domain in export to excel table.
   4.Verify if the accessible name and role for the expand button is correct or not.

Actual Results:

Accessible name for the 'expand' button is not correct, Expand button is defined as link.

Expected Results:

Accessible name of 'expand' button should be sufficient for screen reader user. Accessible name should contain value available in domain as well.

Role should be defined as 'Button' as its behaving as button.

Completed
Last Updated: 01 Feb 2024 15:48 by ADMIN

This is a bug on your documentation website.

Go to https://www.telerik.com/kendo-react-ui/components/grid/ for example to see that the side panel on the left is empty in an Edge browser. It flickers then it disappears.

It works fin in Chrome and Firefox

Duplicated
Last Updated: 31 Jan 2024 13:35 by ADMIN

In the kendo-react-data-tools component, we want to introduce the Autocomplete behavior in Fields.
For example, in the https://www.telerik.com/kendo-react-ui/components/datatools/ link, only 3 fields ( like Name, Price and Discontinued ) were used.

In our application, we have more than 100 fields and the user has to scroll all the way down to pick the required field for applying the filter.

 

Unplanned
Last Updated: 25 Jan 2024 09:35 by ADMIN
Created by: Janki
Comments: 1
Category: KendoReact
Type: Feature Request
1

Would love a prop to hideHeader on KendoReact grids!

For the same reasons that were enumerated in this 2017 Kendo Angular thread: https://github.com/telerik/kendo-angular/issues/285

- For shared grids that only need 1 header row

- For small grids that have sorting/filtering controls outside of the grid header

Unplanned
Last Updated: 22 Jan 2024 08:49 by ADMIN
Created by: Jacky
Comments: 1
Category: KendoReact
Type: Feature Request
1

In Excel, you can group / ungroup rows AND columns.  This is particularly useful for income statement reports.  It would be great if Spreadsheet component can support the rendering of groups created in Excel and also allow groups to be created with the component.  

 

Unplanned
Last Updated: 18 Jan 2024 12:32 by ADMIN
Created by: Peter
Comments: 1
Category: KendoReact
Type: Feature Request
1

Dear Sir/Madam,

 

I would like to disable the right part of a split button dynamically, so something like

<SplitButton rightDisabled={true} items={items} text="Disabled Button" />

Obviously, when the value rightDisabled changes to false, the right part should be enabled again.

 

Regards,

Peter

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.

In Development
Last Updated: 28 Dec 2023 06:15 by ADMIN
Created by: Veselina
Comments: 1
Category: KendoReact
Type: Feature Request
1

React Server Components allow the developer to mix the fast server-side rendering with the interactivity of client-side JavaScript. 

So far modern JS frameworks were explicitly operating on the client (with SSR being an optional feature). With server-components it's the opposite - RS Cs introduce a new mental model for building hybrid applications that leverage both the server and the client.

The main advantages of the React Server Components are that:

  • Initial page load is faster;
  • You can move the data fetching to the server;
  • You can keep the large dependencies on the server;
  • The client-side JavaScript bundle size is reduced;
    Unplanned
    Last Updated: 18 Dec 2023 12:11 by ADMIN
    Created by: Ramkishore
    Comments: 1
    Category: KendoReact
    Type: Feature Request
    12

    Good Morning Team,

    Ability to select columns and generate charts in spreadsheet like excel spreadsheet.
    Insert charts, images in the spreadsheet similar to excel spreadsheet.

    Thanks,

    Ramkishore

    1 2 3 4 5 6