Unplanned
Last Updated: 22 Jul 2021 09:48 by ADMIN
Created by: abhinav
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Currently a tornado chart is not available in the Kendo Charts library. 

Is there a way to create tornado charts with telerik html charts?

Completed
Last Updated: 26 Jul 2021 05:22 by ADMIN
Created by: Helmut
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I'm trying to export the kendo-ui platform into the golang programming language and would like to know if the kendo-ui documentation exists in some other format easier to handle. 
At the moment, I made a robot that goes into the documentation, filters the hml and assembles the corresponding code in golang, but I would like to be able to optimize the process.

https://godoc.org/github.com/helmutkemper/telerik

https://godoc.org/github.com/helmutkemper/telerik#example-KendoUiDialog-String

https://godoc.org/github.com/helmutkemper/telerik#example-FrameworkForm-ToForm

https://godoc.org/github.com/helmutkemper/telerik#example-FrameworkForm-ToScript
Unplanned
Last Updated: 03 Feb 2022 11:46 by ADMIN
Created by: Ankit
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Currently it does not support group/ungroup excel feature using kendo.ooxml.Workbook. Please refer http://prntscr.com/iykrqy for more detail requirement.
Completed
Last Updated: 27 Aug 2021 11:44 by ADMIN
Created by: Federico
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be nice if the player read the video not only via URL, but also directly from the internal location. and Then it would be nice to be able to directly pass the video (in byteArray)
Completed
Last Updated: 08 Jul 2021 11:26 by ADMIN
Created by: Federico
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be nice to have a slider for the images.
Unplanned
Last Updated: 20 Sep 2021 15:32 by ADMIN
Created by: Kasim
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
There is need to have multi-level Donut chart as shown in the link https://stackoverflow.com/questions/38560456/multi-level-pie-donut-chart-in-kendo

The chart here https://demos.telerik.com/kendo-ui/donut-charts/index does shows multi-level of information but it is not the same as required to implement the one shown in Stackoverflow query. 

In case the series chart with multi-level of information is possible with HtmlChart, please share sample code with data binding to implement the same.
Declined
Last Updated: 03 Feb 2022 11:56 by ADMIN
	
Hi 

Got a Cheat sheet Functional Programming with JavaScript mail today and was trying out the samples 

Looks like one of the examples is not working like what mentioned in the PDF 

In Method Chaining the final code snippet is console log Total Drink Cost drinkTotal which is not working Instead console log Total Drink Cost drinkTotal is working 

Thought of notifying you 

Regards 
Mohammed
Unplanned
Last Updated: 20 Sep 2021 15:38 by ADMIN
Created by: kako
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
2
From the forum below.
Even if the axis type of category is other than "Date" (for example, character string / number), PlotBand's position at the time of panning
Please do not move the place.
Completed
Last Updated: 03 Feb 2022 12:06 by ADMIN
Created by: Anthony
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
This is now always on and you can't override it
- You can't now put images, formatting, etc, into the header
- Not every scenario will have user inputted text in the header
- If it's configurable and defaulted to on this won't affect anyone
Declined
Last Updated: 03 Feb 2022 12:14 by ADMIN
Need to add Workbook methods to configure how exported Excel will print.  Including orientation, paper size and others.
Unplanned
Last Updated: 03 Feb 2022 12:23 by ADMIN
Created by: jay
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
kendo MediaPlayer should allow set playback rate, allow user increase/decrease playback rate.
Declined
Last Updated: 04 Feb 2022 09:38 by ADMIN
Created by: Warner
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
There is s set precedence among many of your Kendo UI controls in providing a tool tip option, yet the NumericTextBox is not one of them. 
Under Review
Last Updated: 15 Jul 2021 07:33 by ADMIN
Created by: Adam
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be nice to know what version a function or method was released in. Please add the version to the documentation so users can easily understand if the function is available in the version they are using.
Completed
Last Updated: 30 Jun 2021 12:48 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
your claims your components are accessible according to WCAG success criteria are not valid.

Even your own website is not keyboard accessible. 

Try using a keyboard to navigate your components and you will understand why.

I will be recommending that our organization not use Kendo UI until you address all 38 WCAG 2.0 Levels A and AA Success Criteria.
Completed
Last Updated: 02 Feb 2021 16:55 by ADMIN
Created by: Rahini
Comments: 3
Category: Kendo UI for jQuery
Type: Bug Report
2

Hi Team,

 

Sorry for the confusion. I don't know where to post this content issue I saw in your website.

Have a nice day :)

 

Completed
Last Updated: 08 Jan 2020 14:26 by ADMIN
Created by: Ivan
Comments: 8
Category: Kendo UI for jQuery
Type: Feature Request
2
Please, can you create a breadcrumb for KendoUI for jquery?
Unplanned
Last Updated: 06 Jun 2019 12:09 by Eva
Created by: Eduard Töws
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
Hello ladies and gentlemen.

At call of Dialog.destroy() will not destroy the widgets inited in Dialog.element

Window destroy:
...
_destroy: function () {
    if (this.resizing) {
            this.resizing.destroy();
    }
    if (this.dragging) {
            this.dragging.destroy();
    }
    this.wrapper.off(NS).children(KWINDOWCONTENT).off(NS).end().find('.k-resize-handle,.k-window-titlebar').off(NS);
    $(window).off('resize' + NS + this._marker);
    $(window).off(MODAL_NS);
    $(window).off(NS);
    clearTimeout(this._loadingIconTimeout);
    Widget.fn.destroy.call(this);
    this.unbind(undefined);
    kendo.destroy(this.wrapper);
    this._removeOverlay(true);
},
destroy: function () {
    this._destroy();
    this.wrapper.empty().remove();
    this.wrapper = this.appendTo = this.element = $();
},
...

Dialog destroy:
...
destroy: function () {
    var that = this;
    that._destroy();
    Widget.fn.destroy.call(that);
    that.wrapper.remove();
    that.wrapper = that.element = $();
},
_destroy: function () {
    var that = this;
    var ns = '.' + NS;
    that.wrapper.off(ns);
    that.element.off(ns);
    that.wrapper.find(KICONCLOSE + ',' + KBUTTONGROUP + ' > ' + KBUTTON).off(ns);
    that._stopCenterOnResize();
},
...

In Dialog.detroy() will kendo.destroy() not be called.

Best regards,
Eduard Töws

Duplicated
Last Updated: 23 Dec 2021 08:32 by ADMIN
Created by: Roger
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2

Pasting a cell value into multiple selected cells results in only the first cell in the range getting the value.

Steps to reproduce:
1) Go to https://demos.telerik.com/kendo-ui/spreadsheet/index
2) Click on cell B3 (Calzone) and press CTRL-C
3) Click on cell B4, hold the shift key and arrow down until cells B4-B7 are highlighted (or select the B4-B7 range with the mouse)
4) press CTRL-V

The outcome is only cell B4 receives the value of "Calzone".

Expected/desired behavior

All cells B4-B7 should have the value "Calzone".

Completed
Last Updated: 08 Mar 2019 15:21 by ADMIN
Created by: DDL
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
2

When a ContextMenu is opened for the first time, the animation is not executed. Every consequent open trigger the animation successfully.

The issue can be observed in the following Dojo.

Steps to reproduce:

  • Open the ContextMenu and notice there is no animation.
  • Open the ContextMenu again and notice the default animation is triggered.

Unplanned
Last Updated: 07 Mar 2019 08:47 by ADMIN

When the DateInput uses a day-first format, e.g. dd/MM/yyyy, if you try to type in 29/02 the DateInput auto-corrects it to 01/02, which is not intuitive to the user and requires them to go back and fix the date again after typing in a leap year.

The DateInput should allow the user to type in 29/02 until the year portion is not provided.