Unplanned
Last Updated: 12 Feb 2019 15:30 by ADMIN

Example: https://dojo.telerik.com/uqajAsas

Check the "foo" node. The change event fires for every checked node. It would be better if it fires a single time after all nodes have been checked.

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

Unplanned
Last Updated: 02 Mar 2021 15:36 by ADMIN
Created by: Bernd
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4

Dear Telerik team.

I would love to have the possibility to use drag & drop with different browser windows. As shown here.

That way my customers could make use of their multi-monitor workplaces. Opening a grid or listview with items on one screen and opening a scheduler on the other screen. Then dragging from the grid to the scheduler.

Kind regards

Bernd

Unplanned
Last Updated: 25 Jan 2019 15:49 by ADMIN
Created by: Sam
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

On line 157 of kendo.aspnetmvc.js:

return 'datetime\'' + kendo.format('{0:yyyy-MM-ddTHH-mm-ss}', value) + '\'';

As far as I know this format is non compliant with any standard format.
Could this please be compliant with ISO-8601 standard so that its more universal for APIs to be able to handle?

 

Unplanned
Last Updated: 21 Jan 2019 09:14 by ADMIN

Dojo example.

1. Resize the browser window so that its height is smaller than the DropDownTree's popup height.
2. Click the DropDownTree to open its popup.
3. The popup opens and then auto-closes

Unplanned
Last Updated: 04 Jun 2019 05:45 by ADMIN
Created by: Marcello
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
6
Allow the customers to show and edit flow documents (DOCX and RTF).
Unplanned
Last Updated: 02 Mar 2020 06:46 by ADMIN
Created by: Richard
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
0

The controller is returning the HtmlEncoded contents of a text file that the server reads in from the local operating system on the server, and I would like to display that information in a window or editor such that there is a left hand 'gutter' displaying line numbers and the file content has vertical and horizontal scroll bars.  The line numbers would scroll-y with the content, but should be fixed with respect to scroll-x.

A good example would be

 - the code panel in the Sources tab in Chrome developer tools, or
 - http://jspro.brothercake.com/code-examples/principle5.html, or
 - http://alan.blog-city.com/jquerylinedtextarea.htm (not my first choice though)

This dojo demonstrates a close solution I made using Window.

https://dojo.telerik.com/@RichardAD/IJuLeyOv

The 'gutter' is not locked (or fixed) though.  After many iterations I though of the Editor component and how it might already have line numbers built into it, and I could use it in a read-only manner to display the text file contents with line-numbers.

Unplanned
Last Updated: 02 Mar 2021 15:37 by ADMIN

This is an error that took us an hour to figure out.

We are using the right-arrow icon as part of the content within a collapsible header to represent a state transition. (See image)

We found that the expand/collapse icon did not appear.

 

Further investigation reveals that if the header content contains a span with a class matching the regular expression k-i-arrow.* then the expand/collapse icon doesn't work. It could contain anything else, it was just that one class pattern that threw it.

See this example. https://dojo.telerik.com/EwAsaKAf/3

I also posted a forum message here: https://www.telerik.com/forums/expand-collapse-arrow-fails-to-appear-if-a-class-matching-a-certain-pattern-appears-anywhere-in-the-header   

This is clearly a bug, and one that I suspect can be fixed easily.

Unplanned
Last Updated: 23 Jan 2020 11:09 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
The Detailed description In:
https://github.com/telerik/kendo-ui-core/issues/3903


Bug report
Currently, DataSource bound Spreadsheet throws "Unsupported for multiple ranges" error when attempting to delete the content from multiple not adjusted cells.

The error is thrown by the values() method:

values: function (values) {
    if (this._ref instanceof UnionRef) {
        throw new Error('Unsupported for multiple ranges.');
    }
    if (this._ref === kendo.spreadsheet.NULLREF) {
....
Reproduction of the problem
Go to the DataSource Binding demo;
Select a few cells using the Ctrl + click;
Press Delete button on the keyboard;
"Unsupported for multiple ranges" error will be thrown from the values() method;

This bug has not been resolved in Version 2018.3.911. 

Unplanned
Last Updated: 27 Nov 2019 08:55 by ADMIN
Created by: Winanjaya
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
it's looks nice if we have an option to move chatbot image to either on first or last of message for multiple messages (currently the chatbot image located on the last message)
Unplanned
Last Updated: 22 Jan 2020 09:54 by ADMIN
Created by: Kasim
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
In some specific cases, it is required to show a bubble within a bubble in the Bubble chart. This is required to demonstrate some specific property within the bubble.
e.g.
The bubble position shows which project.
The bubble size demonstrates projects size with respect to the program.
The bubble within the bubble shows the current progress of the project.
Unplanned
Last Updated: 14 Mar 2024 23:51 by Holger
When using a grid against a large table with server side filtering (ToDataSourceResult)

ToDataSourceResult builds a SQL query that converts the search string to UPPER() and therefore prevents the database from using its indexes. As SQL comparison is case insensitive that LOWER() is unnecessary.  

As we have may grids where this is an issue it would be time consuming to build out manual filters for each grid instead of using ToDataSourceResult

This was discussed here and there was no solution at the time:

https://www.telerik.com/forums/grid-filtering-on-text-using-lower-in-sql

I would liek to request an option to tell ToDataSourceResult() not to use LOWER() in the sql?

See ticket #1339310
Unplanned
Last Updated: 17 Feb 2022 11:41 by ADMIN
Created by: Christopher
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
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.
Unplanned
Last Updated: 27 Sep 2023 16:47 by Victor
Created by: Josh
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
9
Currently the media player only supports YouTube and local media files. In think it would benefit from supporting other media providers such as Vimeo and Metacafe.
Unplanned
Last Updated: 22 May 2020 09:05 by ADMIN
Created by: Patrick
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
I would like the additional barcode added.

https://en.wikipedia.org/wiki/Data_Matrix

A Data Matrix is a two-dimensional barcode consisting of black and white "cells" or modules arranged in either a square or rectangular pattern, also known as a matrix.
Unplanned
Last Updated: 08 Jan 2020 14:54 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
7
Currently min and max on DateTimePicker does not restrict time ranges. It only restricts min datetime and max datetime. 
Not time range within each date.

We need possibilty to set min time and max time to select like time picker has.
Unplanned
Last Updated: 31 Jan 2023 06:17 by Sonal
Created by: Andrew
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
4
I would love it if I could add a header to the PDF when using drawTabularData. I'd like to add some header information (e.g. some text above the table) describing what the PDF contains. Ideally this would repeat on each page of the PDF.

For context, I'm using drawTabularData to export data from a Grid component to PDF in a way that supports horizontal page splitting (column splitting).
Unplanned
Last Updated: 03 Feb 2022 12:10 by ADMIN
Created by: Andrew
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
If the drawTabularData function could support grouping, that would be great. Right now, when I group a Grid by a column and then use drawTabularData to export the Grid data to a PDF, the table in the PDF is blank -- it has the right number of columns, but the rows are empty. I'd really appreciate it if this worked, so that users could have the full ability to export a PDF of the data exactly as it looks in the Grid.
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.