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); };
Hi Team,
Can you please consider exposing a property that lets me set a specific in-out delay? This will help prevent flashing if there are multiple operations that happen quicker than the delay.
For example, the UI for WPF BusyIndicator provides this option via the DisplayAfter property.
Thank you,
Julien
Hi Team,
This is a feature request to provide more options for the animation icons. Specifically, I would like to be able to have faster spinning circular animation, like the k-i-loading class provides.
Thank you,
Julien
Hi,
Please provide closing animations for the Dialog just like there are animations for the opening.
thanks
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.
Provide inline editing in Editor component like the one supported by the Kendo jQuery Editor:
https://demos.telerik.com/kendo-ui/editor/inline-editing
Hi,
It would be nice to have a sliding functionality to change the value of the Gauges. Emitting events would be also good to have when sliding.
Attached are GIFs for reference.
Thank you for your consideration.
Currently, the width property is available only for horizontally oriented legend:
Provide an option to set the width of the legend when orientation is set to vertical.
Similar to the following feature request logged in Kendo UI for jQuery - Add ability to sanitize exported data in Excel spreadsheet to prevent formula-injection
So far cell values starting with '=', are executable in the Excel file:
https://stackblitz.com/edit/angular-v3pp4n-vspiss
There is a way to prevent that by manually customizing the generated workbook and adding a single quote prefix to the cell value.
cell.value = "'=Executable-Formula";
However, this will change the initial value of the cell.
Provide a way to prevent the formula injection and persist the value in the cell.
Feature to add "Select All" option in the Column Chooser of the Grid.
Similar to the feature in jQuery Grid: Display SelectAll in the ColumnMenu for Showing and Hiding Columns | Kendo UI Grid for jQuery | Kendo UI for jQuery (telerik.com)
Currently, for some reason - the buttons only exist around the "Today" button in the classic type Calendar.
It doesn't pass our UX requirements and actually looks odd - the buttons change month/year yet are around a value that never changes, on the side.
Can we get a template option or a built-in way to have these buttons around the title, like in Kendo jQuery classic Calendar?
The current headerTitleTemplate only allows changing the contents of that title button - and you can't put buttons inside buttons.
Please add a calendar view that allows the quarter selection and another view that allows the semester selection like the images below
So far the ContextMenu component provides a built-in appendTo property which can be used to define the container to which the popup will be appended. But it cannot be used to set a custom container for all ContextMenu popups used in the application.
Provide a way to define a custom global container to which all ContextMenu popups will be appended. The same is provided for the Kendo UI for Angular Popup using the POPUP_CONTAINER:
https://www.telerik.com/kendo-angular-ui/components/popup/api/POPUP_CONTAINER/
https://stackblitz.com/edit/angular-nuqbre-ty383e
Hello Progress Software Corporation,
We currently have an issue with the Date Input (Calendar) KendoUI Angular component. We need to use the selection mode "multiple" when selecting a full week. When the component loads, it's possible to select a full week with no issue but once you start to play around with the infinite scroll, then another week is selected instead of the desired one. The bug can be reproduced directly in the example provided in your documentation.
https://www.telerik.com/kendo-angular-ui/components/dateinputs/calendar/multiple-selection/
For example,
Repeat this process for more than 4 months and you will see the bug where the selection of the full week jumps to a completely different month.
Kind regards,
Rodrigo Rosenblüth
Hi,
Please provide a template for the operators of the FilterExressions.
thanks
Hello,
after entering an URL and pressing ENTER, the URL is not converted into a link
(In the Editor Kendo UI jQuery this works)
It would be nice to have access to a selectionChange event in the autocomplete similar to the other dropdowns. This way when binding against arrays of complex objects, we could receive the whole object selected instead of the single value property out of it.
Hello,
It would be very nice to have dedicated PDF Export functionality for the Editor. Some of the features that would be included with this would be:
These features are crucial to our project and would be very much appreciated.
Thanks,
Aidan