Completed
Last Updated: 16 Apr 2024 08:38 by ADMIN
Created by: Erik
Comments: 1
Category: DatePicker
Type: Feature Request
0
The purpose of this item is to be able to navigate to the picker button element of the DatePicker components. It will be used for toggling the state of the popup.
Completed
Last Updated: 11 Apr 2024 12:58 by ADMIN
Created by: Annamalai
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
6

Provide a built-in Rating component similar to the jQuery Rating component:

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

Completed
Last Updated: 11 Apr 2024 12:47 by ADMIN
Created by: -
Comments: 2
Category: PivotGrid
Type: Feature Request
16

Hi,

The cell template would be a good addition to the PivotGrid component allowing developers to customize the cell content.

Thank you for your consideration.

Completed
Last Updated: 03 Apr 2024 13:00 by ADMIN
Created by: Dimiter
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1

Please provide built-in way to set attributes to the internal Input element. These can be HTML attributes like "autocomplete", "aria-describedby" and others, and also custom attributes if such are required.

Currently the only way to set attributes is programmatically, for example through a custom directive:

https://stackblitz.com/edit/angular-douddd?file=src%2Fapp%2Fapp.component.ts

Related feature request - https://feedback.telerik.com/kendo-angular-ui/1582022-set-area-describedby-and-area-labelledby-to-form-controls

Completed
Last Updated: 03 Apr 2024 13:00 by ADMIN
Created by: Erik
Comments: 0
Category: SplitButton
Type: Feature Request
1

So far the SplitButton behaves as a single tab stop component. But the component is created by two buttons, one which triggers a single operation and the arrow which only opens the popup.

The arrow should be part of the Tab sequence so the user can open only the popup without the need to use Alt+Down arrow combination.

Completed
Last Updated: 20 Mar 2024 09:31 by ADMIN
Please provide a feature allowing to set the "role" attribute to cells (TD elements) in a given Grid column.
Completed
Last Updated: 20 Mar 2024 08:19 by ADMIN
Created by: Maria
Comments: 1
Category: Spreadsheet
Type: Feature Request
2

I have a project that uses Kendo UI for jQuery to work with spreadsheets. I want to recreate the project from scratch in Angular using the Kendo UI for Angular Spreadsheet component.

In jQuery, I am currently using `kendo.spreadsheet.defineFunction()` (docs) to define our custom functions and I would like to do the same in Angular.

 

 

Completed
Last Updated: 18 Mar 2024 08:43 by ADMIN
Release 2024 Q2 (May)
Created by: Brice
Comments: 1
Category: Grid
Type: Feature Request
20

When using virtual scrolling and grouping features (currently achieved with kendoGridGroupBinding directive), the ability to control the expanded state of the groups is disabled due to limitation.

The available methods are helpfull when you want to control the state of the groups at runtime, but are not compatible with virtual scrolling since the records are loaded on demand.

It would be nice if we had the ability to collapse and expand all groups of the Grid programatically when using virtual scrolling.

Completed
Last Updated: 07 Mar 2024 08:25 by ADMIN
Created by: shahar
Comments: 2
Category: Calendar
Type: Feature Request
5

Please provide an opportunity to show a full week available on the Calendar component, even if the end of the week falls on the following month, e.g.:



Same goes for days from previous month, falling in the start week of the current month.

Thank you in advance.

Completed
Last Updated: 23 Feb 2024 06:47 by ADMIN
We need copy-pasting data from Excel to Kendo UI for Angular Grid, and it is available in old telerik component for silverlite application
Completed
Last Updated: 09 Feb 2024 14:04 by ADMIN
Created by: Daniel
Comments: 7
Category: NumericTextBox
Type: Feature Request
18
Is it possible to add the adornment features from the TextBox to the NumericTextBox? Specifically, the prefix and suffix? 
Completed
Last Updated: 09 Feb 2024 14:02 by ADMIN
Created by: Holger
Comments: 2
Category: AutoComplete
Type: Feature Request
6

Please add the adornments feature, as available for the TextBox component (https://www.telerik.com/kendo-angular-ui-develop/components/inputs/textbox/adornments/).

Completed
Last Updated: 09 Feb 2024 14:01 by ADMIN
Created by: CHARBEL KALLASSY
Comments: 3
Category: Scheduler
Type: Feature Request
11

Hi, Team!

I would like to have a designated Timeline View that displays a whole year. 

Best regards!

Completed
Last Updated: 09 Feb 2024 13:53 by ADMIN
Created by: Nidal
Comments: 9
Category: Scheduler
Type: Feature Request
6

Hy support team,

i am looking to get a year view of a schedueler but it seems to me that the documentation doesnt adress this point.

is there a workarround ?

                       2022
januray february March April............................................December
1             1
2             2
3             3
4             4
5             5
....

Completed
Last Updated: 09 Feb 2024 13:50 by ADMIN
Created by: Loic
Comments: 4
Category: Scheduler
Type: Feature Request
9

Hello, Team!

I would like to have a timeline view with custom number of days/weeks.

Completed
Last Updated: 23 Jan 2024 12:33 by ADMIN
Currently keyboard navigation in Multiselect is a bit limited in comparison to the same functionality in Multiselect in Kendo UI for jQuery. 

It would be great if the shortcuts in Multiselect in Kendo for Angular matched shortcuts in Multiselect in Kendo UI for jQuery.
Completed
Last Updated: 23 Jan 2024 10:04 by ADMIN
Created by: Seyfor
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
6

It is really hard to check change log for every component you have. Why not implement common change log for all components.

I already talk to Carl Bergenhem (Product Manager for Kendo UI) about that, and he reply:

"
Great suggestion! I’ll sync this with our web site team and try to see if we can create something like this!

"

As picture says more then 1000 words, I attach propose solution.


Completed
Last Updated: 15 Jan 2024 11:25 by ADMIN
Created by: Kendo UI
Comments: 1
Category: Scheduler
Type: Feature Request
6

Provide a template that allows modifying the following time slots for the TimeLine view.

113304914-29ca9e00-930b-11eb-8530-45503530f46b.png (1025×344)

Completed
Last Updated: 12 Jan 2024 15:02 by ADMIN

Provide an option for setting different input types to the inner input element of the TextBox component.

Possible scenarios are type email and password.

Completed
Last Updated: 04 Jan 2024 07:42 by ADMIN
We need to be able to overrride "compare" method in kendo-data-query sort-array.operator.  We are using your processData for client side sorting but need to change the "compare" method since we have decimal values already formatted in our objects.  Since they are formatted they are technically strings and sorted as such.  Currently we had to rip out your processData and call our custom version with a compare method like so:

const compare = (a, b) => {
    if (isBlank(a)) {
        return a === b ? 0 : -1;
    }

    if (isBlank(b)) {
        return 1;
    }

    let a1 = a;
    if (isNumber(a)) {
        a1 = toNumber(a);
    } else if (isDate(a)) {
        a1 = ensureDate(a);
    }

    let b1 = b;
    if (isNumber(b)) {
        b1 = toNumber(b);
    } else if (isDate(b)) {
        b1 = ensureDate(b);
    }

    if (a1.localeCompare) {
        return a1.localeCompare(b1);
    }

    return a1 > b1 ? 1 : (a1 < b1 ? -1 : 0);
};
1 2 3 4 5 6