Add accessibility support and keyboard navigation to the Diagram component.
The Scheduler Agenda view is cut when opened on a mobile device. The scheduler cannot be scrolled horizontally.
Please refer to the attached image.
Provide a way to be able to see all events in Agenda view on small resolutions.
Allow defining buttons in ButtonGroup component using NgTemplateOutlet:
<kendo-buttongroup>
<ng-container *ngTemplateOutlet="buttonsList"></ng-container>
</kendo-buttongroup>
<ng-template #buttonsList>
<button kendoButton size="small">Button 1</button>
<button kendoButton size="small">Button 2</button>
<button kendoButton size="small">Button 3</button>
</ng-template>
So far, the ButtonGroup doesn't appear when using this markup.
Currently, the ComboBox only supports "starts with" suggestions. When users type to input, only items that begin with the entered text are matched and focused.
Workaround overriding the default behavior:
Reorder tabs with drag and drop like so: http://demos.telerik.com/kendo-ui/sortable/integration-tabstrip
Any plans on creating a Distinct Filter for the grid? One like Wijmo has? https://ibb.co/fo7gwQ
Allow user to filter like excel and your Keno UI for jquery. Where user can filter record by applying checkbox check and search.
Provide the ability to customize the cells' content of the Spreadsheet. SImilar to the custom cell editors of the Kendo jQuery Spreadsheet:
https://demos.telerik.com/kendo-ui/spreadsheet/custom-editors
Similar to Kendo jQuery:
https://www.telerik.com/kendo-jquery-ui/documentation/controls/grid/grouping/group-paging
https://demos.telerik.com/kendo-ui/grid/server-grouppaging-virtualization
The implementation should also be compatible with the MVC helpers like: https://www.telerik.com/aspnet-mvc/documentation/api/kendo.mvc.ui/datasourcerequest
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.
Allow elements styled with mask-image and -webkit-mask-image to be exported correctly, preserving their masked appearance in images or other export formats.
https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Masking/Introduction
The sticky columns functionality is not working properly with multi-column headers (kendo-grid-column-group).
It would be a nice enhancement to provide support for such scenarios and perform the necessary internal calculations. That will ensure locking a group column will be working as expected.
Example of the current behavior - https://stackblitz.com/edit/angular-y2dtxq
Hello,
It would be great to have the same state management functionality in the TreeList component as provided for the Grid component.
https://www.telerik.com/kendo-angular-ui/components/grid/persist-state
As a minimum saving and restoring columns state (visibility, width, order, sort, ...) should be provided.
Best regards,
Holger
Hello,
we are searching for two components that we don’t find in your ANGULAR Library.
These components are:
I have attached some print screens for existing components on the market...
Could you please check if there are any future/planned developments concerning these two components with Telerik?
Thank you in advance…
Request to add an option for Kendo Tooltip to display when an element receives keyboard focus. This feature would improve accessibility and ensure consistent behavior for both mouse and keyboard users.
Workaround - https://stackblitz.com/edit/angular-udvp3xrm
Highlight the Filter option in the Column Menu when a filter is applied to the column, similar to how the Sorting option is highlighted. This helps users recognize when a filter is active and keeps the design consistent with the sorting highlight.
Workaround - https://stackblitz.com/edit/angular-2ugqhdk3
Current rendering:
Desired rendering:
Add support for Angular's Trusted Types to eliminate CSP compatibility issues and errors when using the Kendo UI for Angular components in applications with strict Trusted Types security policies.
At the moment, the internal logic of the Kendo UI for Angular components uses innerHTML in various scenarios, like placeholder content for virtualization, dynamic rendering of icons and indicators, etc.
Thus, when applications have strict CSP with Trusted Types enabled, developers encounter a "This document requires 'TrustedHTML' assignment" error.
Although all content set via innerHTML is internally controlled and secure, the Kendo UI for Angular components should work seamlessly in applications with strict CSP and Trusted Types policies without requiring developers to modify their security configuration.
Currently, when dragging an event in the Scheduler, the drag hint occupies the whole next slot by design, even if the event itself ends before the end duration of the slot.
It would be great if the Scheduler could be enhanced so that the drag hint is rendered with the exact same height as the original dragged event.
Workaround that programmatically sets a dynamic height for the rendered drag hint element in the DOM based on the original dragged event: