There are many properties that can be set during initialization that cannot be changed through the API afterwards. Take the Kendo UI ToolBar for example. You can add a button to the toolbar and set the text, but you cannot change the text afterwards unless you update the element directly. It may seem like a simple thing to change the text of an element, like so: $("#myButton").text("New Text"). However, if you had set the imageUrl as well, setting the text like I did above would remove the image. Knowing that, you could get the text node and update the nodeValue. That may work today but could easily be broken during a Kendo UI update (for example, if the update included a change that wraps the text in a span). Having to deal with native elements after they have been created by the Kendo UI components is a dangerous practice for developers as it requires an internal knowledge of how elements are rendered based on the different options set. As mentioned above, it is also dangerous as any update could break our code. Therefore, it is imperative to expose methods that allow us to modify any properties through the API (where possible) to allow us to create clean and easy to maintain code. If you search the feedback, you will see many requests to add a method here and a method there. There is even a related one to this called "Kendo Mobile: Methods to set properties dynamically". Suggestion: When you have child elements, such as buttons on the toolbar, please allow us to update those widgets directly rather than through the parent. For example, instead of $("#myToolbar").data("kendoToolBar").enable("#myButton"), allow us to do something like this $("#myButton").data("kendoToolBarItem").enable();
It would be nice to have the option to add new rows at the bottom of the grid, just like Jquery grid has that option "createAt": "bottom".
We'd like radial gauges to have pointers we may customize, and/or to have a variety of pointerType settings, e.g., a marker that follows the circumference next to the scale; a custom image or shape that may be imported in place of the standard needle, such as the outline of a boat for heading.
Currently a tornado chart is not available in the Kendo Charts library. Is there a way to create tornado charts with telerik html charts?
currently is 1px to 1pt mapped in the kendo.drawing.drawDOM method. Actually, this should make it simpler, as described in https://docs.telerik.com/kendo-ui/framework/drawing/drawing-dom#dimensions-and-css-units Unfortunately, this prevents the use of the units cm, in, mm and pt.
It would be very useful from a visual and functional perspective to be able to view scheduler items in a multi-year view, that seems to be currently unsupported.
TOOL BAR Button Positions should have 3 option: right and left, and one stretched or not in the middle. That would be nice!
Please add the multiple date selection option to the kendoDatePicker component as for the kendoCalendar. It would be useful in the table column header to filter date values. Currently, I have to use two DatePicker to select min and max date. Calandar is not an option in my case.
Indeed today, to correctly display red or other points depending on the template, it is necessary to make lines of codes so that the rendering is present. It should be done automatically as soon as the array of dates changes (as it is linked to the calendar), I'm talking about the small calendar that is in the header of the scheduler.
Kendo UI jQuery Scheduler: grab a task (appointment) to cells, without displaying the lines of separation. Set an interval property for the drag and drop, which will be defined, 15 or 30 minutes or even smaller, without necessarily having to display the lines of separation (minorTickCount) increases in this case the height of the cells.
tabstrip in mobile device easy to use for client if tab is scroll on touch instead of arrow button of left and right
It'll be good to have such event for adding custom behavior to some of the child components.
It would help the user experience of entering times if the time picker had a styling option that would display a clock style interface where users can select the hour and then minutes. This is similar to how time pickers work on mobile apps.
I'd like to have the ability for icons to be displayed in Internet Explorer even when web font downloads are disabled. It seems the best way to support this scenario is to use inline SVG in order to support changing the icon colors. See https://www.telerik.com/forums/is-there-a-fallback-from-webfont-icons Thank you.
It seems wrong title 'Filter Grid as You Type' in the help document : https://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/filtering/grid-filter-as-you-type I thank it should be 'Filter Grid as Your Type'.
I've found it frustrating to have to search for the definitions of types to find out if they should be instantiated as classes or interfaces. Coming from C#, the convention there is that interfaces are named with and "I" as the first character. So, IThing is immediately identifiable as an interface whereas Thing is obviously a class. I do understand that this would break a lot of current code.
Currently the Kendo AutoComplete only gives you the selected value, even though it received from the server a more detailed dataset. The autocomplete really should be expanded to exposing the selected text and value, as well as expose the original data item that was selected; that way, the developer can access a lot more data from the control within the context of the change event.
Currently PivotGrid does not support RTL, please add this feature .