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: 13 Mar 2024 15:14 by ADMIN

Currently angular will fail builds due to type check if kendo-timepicker value is null/undefined.

It requires it to always be a date - making it impossible to have initially empty values or to even reset the selection/value and show a placeholder.

Even the documentation for placeholder says:

Specifies the hint the TimePicker displays when its value is `null`.

private _value: Date = null;

@Input() public set value(value: Date)

But the input does not allow this. Even the property is defined in a way that would fail type checks in any newer angular project (strict mode is the default).

The only workaround currently is to  disable type check with $any()

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);
};
Completed
Last Updated: 09 Nov 2023 09:52 by ADMIN
Created by: Mauro
Comments: 1
Category: Kendo UI for Angular
Type: Bug Report
0

https://stackblitz.com/edit/angular-botsaf?file=src/app/app.component.ts

 

The internal element has a calculated width - but it only grows in value if slider width changes (responsive or even in CSS with media queries etc).

It permanently stays at the largest size.

Completed
Last Updated: 13 Oct 2023 14:04 by ADMIN

Test Environment:

Windows 11 Enterprise 22H2 22621.1848.
Narrator
Microsoft Edge Version 114.0.1823.79

Repro steps:

  1. Open link https://www.telerik.com/kendo-angular-ui/components/grid/examples/filter-all-columns/?theme=default-main&themeVersion=6.4.0
  2. Run Narrator
  3. Tab to the table present.
  4. Tab to the column header "Contact Name" and move to the column menu present and press enter
  5. check if the screen reader is announcing the column menu is expanded.

Actual Result:

When pressing enter on the column menu present beside the "Contact name" column header of the table, Screen reader is no announcing the state of the the column as it is expanded or collapsed because of the role set as link.

Expected Result:

When pressing enter on the column menu present beside the "Contact name" column header of the table, screen reader should be announcing the state of the column menu as it is expanded or collapsed, role should be set as button with expand collapse functionality.

 

Completed
Last Updated: 13 Oct 2023 14:01 by ADMIN
Currently the Kendo for Angular Gantt component initializes based on the start date of the earliest task in the view and does not indicate the current date visually. It would be helpful if the current date could be indicated with a vertical bar, or some other visualization. Ideally, this indicator could be styled using CSS. Additionally, it would be good if the view could be initialized to center on the current date, regardless of day, week or month view.
Completed
Last Updated: 13 Oct 2023 13:54 by ADMIN
Release R3 2023 (11.10.2023)
Created by: Prashant
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
41
Spreadsheet control as a separate component, or Grid control updated for AutoCOmplete and drag fill capabilities
Completed
Last Updated: 13 Oct 2023 13:51 by ADMIN
Created by: Shawn
Comments: 2
Category: DateInput
Type: Feature Request
9
To my users the auto-tab behavior confusing because when they type '1/', focus auto-tabs to the day section (US Format), but when they type '8/', focus is on the year because it already auto-tabbed after the 8 and then they have to back up to get focus to the day.

I would like to be able to configure the auto-tab behavior so that the DateInput only auto-tabs when they type '/' or when a section is full (i.e. disable smart auto-tabbing).
Completed
Last Updated: 13 Oct 2023 13:44 by ADMIN
Created by: Mauricio
Comments: 5
Category: DatePicker
Type: Feature Request
5

If the cursor is over the input  after changing a date scrolling with the mouse wheel makes the value change.


We need a property just like this one:

https://www.telerik.com/kendo-angular-ui-develop/components/inputs/api/NumericTextBoxComponent/?&_ga=2.113010244.1182956334.1653485754-1241247116.1645472843#toc-changevalueonscroll

1 2 3 4 5 6