Signal Forms are now stable with Angular@22.
It would be nice to have an ability to use all kendo widgets with new form API.
It would be great if you would allow loading single sheets instead of all the sheets every time. I receive data per sheet from my server.
Also the Spreadsheet fails to trigger events for:
Provide a built-in option to paste Excel data inside the Editor formatted as a table (like the KendoReact Editor):
it seems like for defining a custom color palette it's currently not possible to use css variables. When doing something like this:
I get a "Cannot parse color: var(--my-color)".
Am I missing something?
If not, is this feature planned to be implemented sometime soon?
For me, I absolutely need this feature since I want to maintain the link between colors used within the application. We have custom colors defined as css variables. I want those colors to appear inside the kendo colorpicker palette and when selecting one I want this css variable to be used, let's say as a colored line in a graph component. when later changing the value of the css variable the color within the graph should update. that's why converting my css variables into hex values does not work for me, since it's breaking the link.
On a sidenote - is it possibel to define a custom palette preset, like the ones available:
public palettes: string[] = [
"office",
"clarity",
"slipstream",
"basic",
"monochrome",
];
Thanks for your help.
Thomas
If we format kendo-datepicker to (MMMM/dd/yyyy) and if we enter number of month in input then it is not reflecting and shows month in input field.
As you can see in screenshot, I called (valueChange) event to see the changed value, I have enter 10 in month input field so it shows two value in console, first one is when 1 is press and second is when 0 is pressed after 1 so it gives null and in input field it shows month instead of October.
It is working if we enter first letter of month but it should work if we enter month in number.
Please fix this issue asap.
Thanks.
Hi Telerik Support Team,
I would like to request a feature enhancement for the Kendo UI for Angular TreeList component, specifically regarding the selection mechanisms.
Feature Request:
Please consider adding a (selectAllChange) event emitter to the <kendo-treelist-checkbox-column> component, similar to how selection events are handled or how other advanced components expose header checkbox interactions.
Use Case / Motivation:
Currently, when a user clicks the "Select-All" checkbox in the header, it is difficult to intercept this specific action efficiently to run custom business logic, perform secondary async operations, or manually update external states that depend strictly on the "all selected/unselected" toggle.
While we can listen to general selection changes on the TreeList, having a dedicated (selectAllChange) event that emits the current state (e.g., true, false, or even a custom event object) would provide much cleaner control over the application state, especially in complex data-binding scenarios.
Proposed Syntax:
<kendo-treelist-checkbox-column
[showSelectAll]="true"
(selectAllChange)="onSelectAllChange($event)">
</kendo-treelist-checkbox-column>
This event would be useful to focus the editor on some specific scenarios like in the Dialog:
https://www.telerik.com/kendo-angular-ui/components/knowledge-base/focusing-editor-inside-dialog
It currently relies on a short delay, which might differ depending on the machine.
Ability to customize the fields control of the FilterExressions:
The multiCheckbox filter popup in the Grid sorts its distinct-value list using JavaScript's native string comparison, which orders characters by Unicode code point. This produces correct results for ASCII-only data but breaks for any locale whose alphabet includes characters outside the ASCII range (Turkish İ/Ğ/Ş/Ö/Ü/Ç, German ä/ö/ü, Czech/Polish diacritics, etc.).
The request is to sort the filter item list using locale-aware comparison (`String.prototype.localeCompare`) so that values appear in the correct alphabetical order for the active language, or provide a custom way to order the filter options.
Hi,
in the ListBoxComponent, there is the concept of custom messages, by which a "noData" message can be set:
https://www.telerik.com/kendo-angular-ui/components/listbox/api/custommessagescomponent#nodatatext
A similar concept would be beneficial for the ListView (https://www.telerik.com/kendo-angular-ui/components/listview), so that we can show a message in here as well in case no data is available.
Thanks,
Felix
When a DropDownList is configured with both sticky headers and grouping, the first group header is rendered twice when opening the component - once as the sticky header and once as part of the list.
Currently, there is no built-in way to suppress this duplicate. Achieving the desired appearance requires custom CSS styles, and in cases where virtual scrolling is enabled, custom DOM manipulation of internal elements is needed, which causes side effects and edge cases.
Enhancing the DropDownList with a built-in option for achieving this would allow developers to control this behavior without relying on unsupported workarounds.
Hi,
Please provide a template for the operators of the FilterExressions.
thanks
Currently, the (X) close button is always shown and visible. In other words, it is not possible to configure the dialog component to NOT display this icon button. It is actually not just about the icon button, but also the ESC shortcut. It should not be possible to close the dialog when the input is set.
Feature request: Add an input `closable` for the Dialog Component ('kendo-dialog') to be able to turn off the closable behaviour. Example:
```html
<kendo-dialog [closable]="false"></kendo-dialog>
```
The "closable" is `true` by default, ensuring that it is backwards compatible.
Use case: A certain dialog is presented to the user and user must NOT be able to close/ignore the dialog. The user is thus forced to resolve the instructions presented in the dialog and resolve it the intended way.
It would be great if the <kendo-listbox> had the possibility to take in a list of selected values, which causes the matching items to be selected.
Currently, the only option I see is to inject the ListBoxComponent as viewChild, and call .select manually, which is quite cumbersome.
Suggestion:
- additionally to the "textField", provide a "valueField" property
- also add a "selectedValues" property, which takes in an array / signal of value properties, which then are automatically selected, whenever its value changes.
See https://www.telerik.com/kendo-angular-ui/components/listbox/api/listboxcomponent
Due to the internal mechanism by which the Scheduler displays events per day, some events are shrunk without reason, because others are shrunk due to overlap.
In the following screenshot, the Scheduler Event 1 has enough space to occupy the entire column, but is shrunk the same as Event 2 (which is shrunk due to the overlap with Event 3). Internally, each day use column separation logic to distribute the events. Since all three events fall into the same slot, the entire column is divided by 3 and events are distributed among them. Since Event 1 is the first event, it has been shown in the first 1/3. This isn't optimal, as this case proves it.
Here is how Kendo Scheduler behaves compared to Google Calendar in this case
Google Calendar
Please provide a way to disable the months or years when displaying months or years in the Calendar. The disabledDates callback function could be evaluated for these views.
Thank you