Declined
Last Updated: 25 Jul 2024 13:14 by ADMIN
Created by: Alex
Comments: 1
Category: KendoReact
Type: Bug Report
0

I have noticed that whenever you want to upload multiple photos at once, using this React Upload Component & Events - KendoReact Docs & Demos (telerik.com) component the previews of the images uploaded bounce/ shake around. I've tried this on multiple browsers and they all have the same bouncing effect for the image previews. For a single photo it doesn't do it but once multiple images are added, it will do it.

 

Planned
Last Updated: 17 Jul 2024 11:20 by ADMIN
Scheduled for 2024 Q4 (Nov)
Created by: Owen
Comments: 3
Category: KendoReact
Type: Bug Report
3

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:

Under Review
Last Updated: 11 Jul 2024 11:00 by ADMIN
Scheduled for 2024 Q3 (Aug)
Created by: Grant
Comments: 4
Category: KendoReact
Type: Bug Report
0

Hi team, 

Im my example (see here), I've added a 'name' attribute to the 'Persons' resource data, and changed the textField mapping to use the 'name' field, however the scheduler is still displaying the results of the 'text' attribute. 

Leading me to think that the scheduler is hardcoded to only look for the text attribute, because if its changed/removed, the scheudler does not display anything, regardless of what the 'textField' value is.

Please advise.

Thanks,
Grant

Unplanned
Last Updated: 09 Jul 2024 06:50 by ADMIN
Created by: Joe
Comments: 1
Category: KendoReact
Type: Feature Request
0
This could be a port of the "DockManager UI Component" in the 2024 UI for Blazor Roadmap or the current jQuery Dock Manager.
Unplanned
Last Updated: 05 Jul 2024 08:43 by ADMIN
Created by: Peter
Comments: 1
Category: KendoReact
Type: Bug Report
0

Dear sir/madam,

We noticed an error when setting the "defaultShowWorkHours" to false, it still shows the work hours as the default.
Check the Codesandbox

Expected behavior when you set "defaultShowWorkHours" to false, it shows the full day timeline


Unplanned
Last Updated: 02 Jul 2024 08:51 by Alex
Created by: Oleksandr
Comments: 2
Category: KendoReact
Type: Feature Request
2

I'd like to turn off even/odd row highlighting for the Grid and use cell border instead.

I can do it by learning kendo css classes and override particular properties for certain classes but... I have many different vendors for different components and it's so a pitty to learn all the css classes hell...

It'd be supper cool to have something like turnOffAlternation/alternatingRows and showCellBorder/showBorders  attributes on the Grid.

Unplanned
Last Updated: 19 Jun 2024 20:20 by ADMIN

Hi, Keyboard navigation using "page down" and "page up keys" doesn't work.

Here is a stackblitz where the problem can be reproduced: https://stackblitz.com/edit/react-q9n5fe?file=app%2Fmain.tsx
Reproduction steps:

  1. Click inside the grid
  2. Press "Page down" or "Page up" - doesn't work

It only works when:

  1. Click outside of the grid
  2. click on vertical scroll bar without selecting any grid cell.
  3. Press"Page down" or "Page up" - it works.

Best Regards

Hubert

Unplanned
Last Updated: 19 Jun 2024 01:02 by ADMIN
Created by: Revanth
Comments: 2
Category: KendoReact
Type: Feature Request
6

Hi Team,

 

For MenuItem target="_blank" feature is not there. Please enable the same. which will be helpful as menu is the face of app.

 

Regards,

Revanth

Completed
Last Updated: 06 Jun 2024 06:43 by ADMIN
Created by: David
Comments: 6
Category: KendoReact
Type: Feature Request
5

Hi,

I would like to be able to specify a Grid Column template for the data without having to replicate the entire cell and its properties. Please see below for justification:

Consider the following example of KendoReact Grid Cell customisation: https://www.telerik.com/kendo-react-ui/components/grid/styling/#toc-adding-custom-cells

Following this approach results in the loss of a lot of properties from the grid cell compared with 'default' cells e.g.

<td colspan="1" class="" role="gridcell" aria-colindex="1" aria-selected="false" data-grid-col-index="0">Chai</td>
<td style="background-color: rgba(55, 180, 0, 0.32);">18 <span class="k-icon k-i-sort-asc-sm"></span></td>

These properties are important for many reasons including accessibility. There is another example of KendoReact Grid Cell customisation that preserves these properties here: https://www.telerik.com/kendo-react-ui/components/grid/cells/#toc-customization

e.g.

<td colspan="1" class="" role="gridcell" aria-colindex="4" aria-selected="false" data-grid-col-index="3">39</td>
<td colspan="1" role="gridcell" aria-colindex="5" aria-selected="false" data-grid-col-index="4" style="color: red;">false</td>

However, there is a considerable amount of code required to achieve this:

const CustomCell = (props) => {
  const field = props.field || "";
  const value = props.dataItem[field];
  const navigationAttributes = useTableKeyboardNavigation(props.id);
  return (
    <td
      style={{
        color: value ? props.myProp[0].color : props.myProp[1].color,
      }}
      colSpan={props.colSpan}
      role={"gridcell"}
      aria-colindex={props.ariaColumnIndex}
      aria-selected={props.isSelected}
      {...{
        [GRID_COL_INDEX_ATTRIBUTE]: props.columnIndex,
      }}
      {...navigationAttributes}
    >
      {value === null ? "" : props.dataItem[field].toString()}
    </td>
  );
};

I would like to be able to define a template for a cell without having to specify these properties every time.

Kind regards,

David

Completed
Last Updated: 04 Jun 2024 11:47 by ADMIN
Created by: Marcu
Comments: 5
Category: KendoReact
Type: Bug Report
0

Hello,

We are encountering an issue with duplicate entries in our Kendo Grid with drag & drop functionality. When the grid is scrolled, clicking on any of the header cells multiple times results in the first entry being duplicated. This problem occurs on the example provided on your website as well: Kendo React Grid Row Reordering

Reproduction Steps:

  1. Scroll down within the grid.
  2. Click on any header cell multiple times.
  3. Scroll back to the top of the grid.

You will notice that the first entry is duplicated multiple times. It appears that the reorder logic is being triggered when a header cell is pressed.

We are using version 6.1.0. Please refer to the attached video for a visual representation of the issue.

Thank you for your assistance.

Unplanned
Last Updated: 27 May 2024 15:32 by ADMIN
Created by: Jessica
Comments: 1
Category: KendoReact
Type: Feature Request
0
It would be extremely useful to have data validation at the cell level on the spreadsheet, similar to Excel where we can restrict input to certain types of data, be it number, string, date, etc., and custom error handling to go along with it. 
Unplanned
Last Updated: 23 May 2024 11:26 by ADMIN
Created by: Glen
Comments: 5
Category: KendoReact
Type: Feature Request
5

Hi 

Please build a React component for TreeMap similar to https://demos.telerik.com/aspnet-ajax/treemap/overview/defaultcs.aspx

Unplanned
Last Updated: 26 Apr 2024 09:55 by ADMIN
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
10

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"/>
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.
1 2 3 4 5 6