Completed
Last Updated: 23 Jan 2025 16:08 by ADMIN
Release 2025 Q1 (Feb)
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
0
Please provide an option to resize Kendo Angular Grid columns through built-in keyboard shortcuts.
Completed
Last Updated: 23 Jan 2025 16:08 by ADMIN
Release 2025 Q1 (Feb)
Created by: Kaspars
Comments: 1
Category: Gantt
Type: Feature Request
12

Provide a way to change the Gantt tasks dates by dragging the edges of each task. Similar to the  Kendo UI for jQuery Gantt:

https://demos.telerik.com/kendo-ui/gantt/index

 

Completed
Last Updated: 23 Jan 2025 16:00 by ADMIN
Release 2025 Q1 (Feb)

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: 06 Jan 2025 10:48 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.

Completed
Last Updated: 23 Dec 2024 12:04 by ADMIN
Created by: Markus
Comments: 18
Category: DatePicker
Type: Feature Request
36

We face some issue with the with keyboard inputs. The current behavior is that the kendo tries to help us the dates right. For example if you have entered the 28th of February and you start to type another new date which should be the 31.12.2019 for example, after typing the first "3" the is immediately jumping to the month after hitting the first number because there is no date in February which has two digits on a day and starts with a "3". So it tries to get the dates right but the user maybe wants to replace the whole date and just want to continue writing the date.

We need a functionality that the not validate the date the way he does it right now, overtake the validation, like turn it off or anything like that?

Completed
Last Updated: 28 Nov 2024 07:56 by ADMIN
Created by: Johann
Comments: 1
Category: Grid
Type: Feature Request
1

Could we have a turnkey solution which allows to disable a row selection which takes care of disabling only the relevant selection checkboxes and handle properly the "Select all" checkbox state (in header).

With CheckboxColumnComponent field which allows providing dataItem field name or predicate function.

<kendo-grid-checkbox-column showSelectAll="true" disableSelection="isDisabled">
</kendo-grid-checkbox-column>

<kendo-grid-checkbox-column showSelectAll="true" [disableSelection]="isDisabledPredicateFunction">
</kendo-grid-checkbox-column>

OR

If you don't want to add more selection concerns into CheckboxColumnComponent this field could be specified in your SelectableSettings as well:

public selectableSettngs: SelectableSettings = {
    enabled: true,
    checkboxOnly: false,
    mode: 'multiple',
    cell: false,
    drag: false,
    rowEnabled: mySelectableRowPredicateFunction
}

rowEnabled field could something like this:

export declare type RowEnabledSelectionFn = (context: RowArgs) => boolean | boolean;

export interface SelectableSettings {
    //...
    /**
     * Determines if row selection is allowed.
     *
     * @default true
     */
    rowEnabled?: RowEnabledSelectionFn;
}

Thank you

Completed
Last Updated: 15 Nov 2024 12:56 by ADMIN
Created by: Michael
Comments: 1
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.
Completed
Last Updated: 15 Nov 2024 12:46 by ADMIN
Created by: Irfan
Comments: 1
Category: Scheduler
Type: Feature Request
7
Provide an option to specify how many events could be listed for a day. When there are more events for a specific day a "more" link will be placed at the bottom of the day slot and will navigate to the day view, if clicked.
Completed
Last Updated: 15 Nov 2024 12:42 by ADMIN
Release 2024 Q4 (Nov)
Created by: Robert
Comments: 13
Category: Scheduler
Type: Feature Request
35

Provide the possibility to dynamically change the height of the slots in Month, Multi-Week, and other views. This feature is useful in order to fit the events in the specific slot:

jQuery Scheduler:

https://demos.telerik.com/kendo-ui/scheduler/adaptive-slot-height

Completed
Last Updated: 15 Nov 2024 12:40 by ADMIN
Release 2024 Q4 (Nov)
Created by: Robert
Comments: 2
Category: Scheduler
Type: Feature Request
13

Provide an auto event height functionality in order to display the entire content of the event in the Moth view:

jQuery Scheduler:

https://demos.telerik.com/kendo-ui/scheduler/auto-event-height

 

Completed
Last Updated: 15 Nov 2024 12:26 by ADMIN

Hi, 

It will be a good addition to the component if the ability to disable dates is added like the disabledDates input of the DatePicker or jQuery DateRangePicker widget.

Completed
Last Updated: 15 Nov 2024 12:10 by ADMIN
Created by: Georgi
Comments: 1
Category: Charts
Type: Feature Request
6

I would like to be able to use a texture, a pattern, or an image as the background of a Kendo chart.

One use-case where this would come handy is a stacked bar chart where all segments of the bar have the same color. A way to visually separate them could be via different textures.

See image below for an example reference:


Completed
Last Updated: 13 Nov 2024 09:51 by ADMIN
Created by: John
Comments: 2
Category: Charts
Type: Feature Request
2

We have this feature in Kendo Grid:

<ng-template kendoGridNoRecordsTemplate>
  <fa-icon [icon]="faCloudXmark" class="fa-2x"></fa-icon>
  <p>There is no data to display.</p>
</ng-template>
Can we get `kendoChartNoRecordsTemplate` for the chart please?
Completed
Last Updated: 12 Nov 2024 12:39 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

Completed
Last Updated: 06 Nov 2024 10:06 by ADMIN
Release 2024 Q4 (Nov)
Created by: Hoai Vu
Comments: 1
Category: TreeList
Type: Feature Request
6

Hi Kendo Team,

Could you add a checkboxOnly functionality to the TreeList component selection SelectableSettings => checkboxOnly setting similar to the Grid component SelectableSettings:

https://www.telerik.com/kendo-angular-ui/components/grid/api/SelectableSettings/#toc-checkboxonly

Thank you.

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.

 

Completed
Last Updated: 11 Sep 2024 08:01 by ADMIN
Created by: Dzmitry
Comments: 1
Category: Kendo UI for Angular
Type: Bug Report
1

https://stackblitz.com/edit/angular-niog8n-eldomz?file=app%2Fapp.component.ts



Recurrency "End On" date in datepicker is different with RecurrencyRule's one.



Steps to reproduce:

open series from the example,  set Recurrency's End selector to date option, set date to Sep 9th.

Actual result: recurrency rule contains UNTIL=20200910T000000Z.

Save and open series again: recurrency's End date is now Sep 10th.

Changing it to Sep 9th and saving brings no changes.


Completed
Last Updated: 10 Sep 2024 14:59 by ADMIN
Release 2024 Q4 (Nov)

Hi,

It will be a good addition to the component if a 'Fit to Page'/'Fit to Width' predefined zoom option is introduced as currently it can only be set in the zoom tool UI.

Completed
Last Updated: 03 Sep 2024 07:23 by ADMIN
Created by: Petr
Comments: 4
Category: ComboBox
Type: Feature Request
0

Hello!

I think it will be nice to have configurable template for ComboBoxComponent input field.

something like it is possible within grid pager comes to my mind - there is a template and building blocks that we can use


Use case:

For example, in our work we customize item template with



and our customers wish to see selected item as it is in the list, with icon and other customizations.


I have managed to do that by creating a directive that i put on <kendo-combobox>... and that inserts dynamically created icon component near the input, so that it looks same as in the options list.

But this is ugly and not easy maintainable, etc 



1 2 3 4 5 6