Hi Team,
While I understand there are release notes and breaking changes, I would like to request you consider adding some version information to the documentation. This would help identify when certain features were introduced.
Thank you!
Currently the dialog action buttons can not hold only icons, the API does not provide means to have a button with only an icon or an icon and text. Considering the aforementioned we should extend the API to allow adding of icons inside the action buttons.
The TileLayout is a great way to show data in a dashboard, but lacks a dataSource to allow dynamic generation of them. I have had to create a custom extension that introduces a dataSource, which then utilises `widget.setOptions({ containers: items })`. But this puts too much reliance on custom code and is a worry that it will break between version upgrades. Also, editing one container doesn't allow the refreshing of one tile; I need to reset the whole lot using `setOptions`.
Adding, editing, resizing, and re-ordering are also difficult to implement for a tool that has huge potential.
As per the .NET format support shown here:
http://stackoverflow.com/questions/11731996/string-format-numbers-thousands-123k-millions-123m-billions-123b
And here:
http://msdn.microsoft.com/en-us/library/0c899ak8%28v=vs.100%29.aspx#SpecifierTh
123456789.ToString("#,##0,") will return "123,457".
123456789.ToString("#,##0,K") will return "123,457K".
kendo.format("{0:#,##0,", 123456789) will return "123,456,789".
kendo.format("{0:#,##0,K", 123456789) will return "123,456,789K".
As per the .NET standard, each trailing comma will round off 3 digits, so 123456789.ToString("#,##0,,M") will return "123M".
Hi Telerik Team,
Iām using Kendo UI version 2022.3.1109 with jQuery, and I have implemented a Kendo UI ImageEditor in my application. I would like to restrict the allowed file types when users open an image from their device.
Goal
I want the ImageEditor to accept only a specific set of formats:
Current Behaviour
When the user clicks the Open tool inside the Image Editor:
attribute available in Kendo Upload
Regards,
Amit
Hi Team,
I would like to request a chart which visually displays workflow data similar to a Gantt chart but in pivoted form.
Thank you!
The grid has a number of built in filters, what is not supported is searching for cells that have no value or some value (i.e. NULL or NOT NULL). This would be a very useful addition.
Currently, Kendo UI for jQuery components rely on innerHTML and direct DOM manipulation throughout their internal implementation. This occurs in multiple components.
Thus, when "require-trusted-types-for 'script';" is included, errors such as - `This document requires 'TrustedHTML' assignment. The action has been blocked.` and `TypeError: Failed to execute 'write' on 'Document': This document requires 'TrustedHTML'` - appears on the page.
I would like to request Trusted Types Support for Kendo UI for jQuery components.
Hi Team,
I would like to request a preview above the Kendo UI ArcGauge to show the potential colors similar to the appearance of the RadialGauge.
Thank you!
Hi Team,
I would like to request a built-in way to set a gradient area between line series.
Thank you!
Hi Team,
I would like to request a way to hide all columns with the columnMenu instead of requiring one to remain.
Thank you!
Incorporate page breaks into the Gantt PDF Export and include option to repeat column headers on each page.
In our use case, we have linear gauges that show different colours depending on the time of day.
Our users need to be able to move the pointer up and down to view the corresponding values.
As you can see in the below image, currently we have a workaround to show a slider above it and then move the pointer up and down accordingly, as the slider is moved. However, this does not always work perfectly, and sometimes the slider doesn't line up.
It would be nice if there were an option on the linear gauge to make the pointer moveable (false by default) and then also have corresponding events e.g. when the movement starts/stops.
Please make the speech to text button/suffix of a kendo textarea available via mvvm. Also speech to text button to come standard as a tool in the kendo editor.
When I add a minimum or maximum value to the date picker, the control allows out-of-range dates to be entered until the dateInput option is set to true. At that point, any out-of-range date will be set to either "min" or "max." The change event will not be called for that change.
This would be perfect:
Hi Team,
I would like to request a built in way to add Multi-Filtering for the TreeList/Gantt. Additionally, it would be nice to have an easier way to access the TreeList and its associated FilterMenu events.
Thank you!
Hi Team,
I would like to request a way to configure the planned task items tooltip:
Thank you!
We have noticed a serious performance issue in the TreeList control which I have confirmed in the latest version in this Dojo: https://dojo.telerik.com/aNuKanAG. This Dojo is a based on the TreeList in-cell editing demo from your website.
I was trying to figure out if there was any good reason for this. In the Dojo above all data are nested under a single parent. So, I created another Dojo but this time there are two separate parent groups: https://dojo.telerik.com/OcEmAgIz. This Dojo is based on the Binding to local data demo from your website.
The problem here is that these re-renders are very expensive. Imagine if the call to console.log was instead something else that might need a bit of computation time to complete.
The simple act of expanding and collapsing a group from an unrelated part of the tree, or simply opening and closing an editable cell should not result in the entire tree being re-rendered. This is a serious performance issue, and seems completely unnecessary.
What I have demonstrated in the Dojos I created is that Kendo is re-rendering the ENTIRE structure. The goal of this feature would be to rerender only the specific cells of the treelist that have been impacted by an edit.