Need More Info
Last Updated: 30 Oct 2024 09:12 by ADMIN

In MultiColumnComboBox .k-table-header-wrap sets extra border-right-width, in result cells and column vertical separator is not consistent.

Image

Can be reproduced in telerik demo page Angular Dropdowns MultiColumnComboBox Data Binding - Kendo UI for Angular (telerik.com)

Declined
Last Updated: 29 Oct 2024 22:26 by Nelson
Created by: Jaap
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
4
Same layout as TimePicker, except:
- first part (hours) allows negative sign. Popup will display hours from -23 through 23.
- boolean 'allowDays'. Displays a "days.hours:minutes" format. Negative sign still allowed on first part (which is now days instead of hours).
- boolean 'allowSeconds'. Displays also a seconds part.
- number 'value' property containing the current value. The integer part is days, the fractional part the hours and minutes. (Date object would also be nice, I don't see how to specify a negative value.)
Unplanned
Last Updated: 25 Oct 2024 13:23 by David
Created by: Kamran
Comments: 3
Category: Editor
Type: Feature Request
9

The following HTML markup is not supported and misinterpred by the Editor:

<span style="color: red;">Test <span style="color: blue;">Inner Span </span> Test</span>

The result is:

<p>
   <span style="color: red;">Test</span>
   <span style="color: blue;">Inner Span</span>
   Test
</p>

 

 

Unplanned
Last Updated: 24 Oct 2024 18:59 by Sean

We currently are using TinyMce and they have a plugin that allows you to insert templates into their editor.  When writing content, templates can save users a lot of time, especially when they’re entering a lot of the same content over and over. They also have the ability to configure template replace values.

Adding a similar plugin to the Kendo Editor would be nice.

 

https://www.tiny.cloud/tinymce/features/templates/

https://www.tiny.cloud/blog/tinymce-templates/

 

Unplanned
Last Updated: 23 Oct 2024 13:57 by ADMIN
Created by: Iqbal
Comments: 3
Category: DropDownList
Type: Feature Request
5
It would be nice to be able to set dropdown popup alignment position like, left, right, top, bottom for all dropdowns like, dropdown button, dropdown list, etc
Unplanned
Last Updated: 22 Oct 2024 10:56 by Kendo UI

Currently, the views order all-day events based on their index in the events array. However, in the Month view, all-day events are arranged by start date, from earliest to latest. This means that if events start at different times, they will be displayed in that order.

For example - https://stackblitz.com/edit/angular-yvtoyp?file=src%2Fapp%2Fevents-utc.ts,src%2Fapp%2Fapp.component.ts

Day view:

Month view:

Example - https://stackblitz.com/run/?file=src%2Fapp%2Fevents-utc.ts,src%2Fapp%2Fapp.component.ts

React seems to render them in the start date order - https://stackblitz.com/edit/react-kms53j?file=app%2Fshared-sc-events-utc.js

And Google Calendar for reference:

 

 

 


 

 

Unplanned
Last Updated: 21 Oct 2024 11:44 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: Scheduler
Type: Feature Request
1

Currently, the slotClass callback is triggered on every change detection, which also includes user interactions such as dragging or editing an event.

This will become problematic if there is complex logic in the callback and it can get a bit worse if there are bigger slotDivisions in place.

Example with dragging and editing:

https://stackblitz.com/edit/angular-qdjnb6?file=src%2Fapp%2Fedit.service.ts,src%2Fapp%2Fapp.component.ts

While dragging, the slotClass will fire multiple times, and while editing every keypress will trigger the callback. This can be further improved and limit when the slotClass callback is called in the Scheduler component.

 

 

Unplanned
Last Updated: 21 Oct 2024 09:00 by Senthil
Created by: Werner Haltner
Comments: 9
Category: ListBox
Type: Feature Request
22

Hi,

It will be a good component enhancement if selection and multi selection was introduced to the ListBox component. Like Kendo UI for React and jQuery:

https://www.telerik.com/kendo-react-ui/components/listbox/selection/

https://docs.telerik.com/kendo-ui/api/javascript/ui/listbox/configuration/selectable

Thank you for your consideration.

Unplanned
Last Updated: 21 Oct 2024 08:31 by Kendo UI

Add functionality to the Java Spring Boot sample application to support server-side data operations, such as sorting, filtering, and pagination. Currently, the demo uses the process method to do the operations on the client.

https://github.com/telerik/kendo-angular/tree/master/examples-standalone/kendoangular-java-integration

 

In Development
Last Updated: 18 Oct 2024 05:28 by ADMIN

Dear Kendo-Supportteam,

We are experiencing an issue with the Editor component.

It turns out that setting the iframe input to false causes the paste event to be triggered twice.
Once as documented before the valueChange event and once seemingly as the native paste event after valueChange.

There are multiple issues resulting from this.

  1. Calling preventDefault on the initial event also does NOT prevent the native event from triggering directly after. Only the following events from the Editor itself are prevented.
  2. As the next event is the actual native event of type ClipboardEvent, the interface is different from what the type definitions suggest. Leading to errors, if the attached method tries to just call isDefaultPrevented on the event.

It is quite easy to reproduce this from your event demonstration examples by just setting the iframe input to false and maybe also trying to call isDefaultPrevented in the respective paste event handler.

Kind Regards,
Hannah

Unplanned
Last Updated: 17 Oct 2024 07:51 by Cyril
Created by: Kendo UI
Comments: 1
Category: Timeline
Type: Feature Request
4
Provide an option that will allow reversing the order of the Timeline events, i.e. displaying them in a descending/reverse chronological order.
Unplanned
Last Updated: 16 Oct 2024 11:34 by ADMIN
Created by: Paul
Comments: 3
Category: Kendo UI for Angular
Type: Bug Report
0

When typing into the Angular Datepicker on iOS devices, the page scrolls unexpectedly after entering the first character of any date part (day, month, year). The scroll occurs on each subsequent character input (2nd, 3rd, etc.), making it difficult to use the input field.

Steps to Reproduce:

  1. Open a webpage with a Kendo UI Datepicker on an iPhone (iOS v16+, any model). Ensure the datepicker is positioned far enough down the page that scrolling is required to reach it. Example can be seen at https://angular-v7j3ag.stackblitz.io/
  2. Focus on the Datepicker input field.
  3. Enter a date manually using the on-screen keyboard.
  4. After typing the first character into any date part, the page behaves normally, but it scrolls up to the top of the page on subsequent character inputs.

Expected Behaviour: The page should remain in place when typing, allowing smooth input without scrolling.

Observed Behaviour: The page scrolls up after entering the second character of any date part (day, month, or year) and continues to do so on each further input.

Reproduction: The issue was recreated using Kendo's own Datepicker example (with added spacing to demonstrate the scroll behaviour). https://stackblitz.com/edit/angular-v7j3ag

Affected Platforms:

  • All iPhone models (tested 11 - 15) with iOS v16+ (reproducible on Safari and Chrome browsers).
  • Does not occur on desktop or Android devices.

Additional Notes:

  • A video demonstrating the behaviour is attached.
  • This has been reproduced on both BrowserStack and physical iPhone devices.

I couldn’t find an existing bug report related to this issue, so I would appreciate it if you could confirm whether this has been reported or provide further guidance.

Need More Info
Last Updated: 15 Oct 2024 12:48 by ADMIN
I could not find an article which says aria-selected is supported for a table tr td structure. Is this supposed work in mac voiceover at all? if possible point me to corresponding resources in the net.
Unplanned
Last Updated: 13 Oct 2024 19:24 by Tony BenBrahim

Hi,

It will be a nice feature to have the ability to customize the drag hint of the built-in row reordering similar to the hintTemplate.

Completed
Last Updated: 08 Oct 2024 09:11 by ADMIN

Hi,

It would be a nice feature for the WindowService and DialogService settings to have a themeColor property.

Completed
Last Updated: 08 Oct 2024 08:14 by ADMIN
Release 2024 Q4 (Nov)

Currently the Grid checkbox column selection does not allow for selecting a range of rows via shift-click.

As this seems to be a behavior that users expect, based on a similar experience with popular applications like for example Outlook and Gmail, we can consider introducing this behavior in the Grid too.

For example:

When we click on a check box and Shift+click on another checkbox all the rows in between these rows should be checked. Ex: click on 2nd row and shift click on 8th row, all the rows in between 2nd and 8th should be selected.

 

Unplanned
Last Updated: 08 Oct 2024 08:10 by Kavya
Created by: Kavya
Comments: 0
Category: DataQuery
Type: Feature Request
1

Hi Team, 

Currently, the CompositeFilterDescriptor supports the following two logical operators - and and or.

I would like to request the addition of a none logical operator.

Unplanned
Last Updated: 07 Oct 2024 09:57 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: Charts
Type: Feature Request
1

Currently, the label renders to the right:

However, it would be good to have an option to manage the alignment to the left, similar to the RTL mode:

Unplanned
Last Updated: 07 Oct 2024 06:36 by ADMIN
Created by: Miria
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1
It would be great to have an option to add pie charts to the map, a feature similar to the attached picture
In Development
Last Updated: 04 Oct 2024 12:47 by ADMIN
Created by: Michael
Comments: 0
Category: Splitter
Type: Feature Request
1
Provide an option that would allow developers to set the values of aria attributes like aria-valuenow, aria-valuemin and aria-valuemax to the separator elements.
1 2 3 4 5 6