Declined
Last Updated: 31 Aug 2021 12:01 by ADMIN
A very nice feature to have on the Dataviz gauges would be events for when the value changes from one range to another.  For example, if I have a gauge with range thresholds at 10 and 40, it would be nice if an event gets triggered when either one of those thresholds are crossed in either direction.  Let's say 0-9 is green, 10-39 is yellow, and 40+ is red.  If my value goes from 9 to 10 the gauge should raise an event that gives me the current range I'm in so I can act on it.
Unplanned
Last Updated: 31 Aug 2021 06:46 by ADMIN

Table editor allows to select multiple cells, horizontally, vertically, or even individually while holding down the Ctrl-key.

If based on such selection the table wizard is opened, one would expect that any choices made would apply to all the selected cells.
Instead, the changes are applied only to the first cell.

Please, either disallow selecting multiple cells or better allow batch editing of the selected ones.

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)
Unplanned
Last Updated: 26 Aug 2021 10:35 by ADMIN
Created by: Harry
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
11
I'm going to explain this in a number of different ways just to help clarify what I'm asking for: 1) When exporting Kendo grid to Excel, add support for setting the cell comments. 2) Please add support for a "comment" property to sheets.rows.cells. The value of the "comment" property would be used to set the cell comment in the generated Excel file. 3) In the link below, there is support for sheets.rows.cells.format. Add a similar property named sheets.rows.cells.comment that is used to set the cell comment in the exported Excel file. http://docs.telerik.com/kendo-ui/api/javascript/ooxml/workbook.html
Unplanned
Last Updated: 24 Aug 2021 13:26 by ADMIN
Created by: Timothy
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
Often when you get a plotAreaClick, a specific dataItem is highlighted with a tooltip showing.

When this happens, if you click on the plot area, but miss the actual data point, I would like to execute code like if seriesClick was triggered.

Example: in my tooltip I tell people to "Click to search", which opens a dialog with extra information about that data point. This works great in my seriesClick handler, since I can access the data point. If they miss the point, it triggers a plotAreaClick. They still see the tooltip for the item, but I can't open the search as I don't know which dataItem is current.

An alternative solution would be to expose whichever dataItem is currently responsible for the tooltip.
Declined
Last Updated: 24 Aug 2021 13:20 by ADMIN
Created by: Amrinder
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Support for more styling options for labels, for example, ability to add "text-decoration" to make the label look like a hyperlink.
Completed
Last Updated: 24 Aug 2021 06:11 by ADMIN
Created by: Chris
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
So that the dates are still visible when a user scrolls down through the resources.
Completed
Last Updated: 24 Aug 2021 06:02 by ADMIN
Created by: Eugene
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Hello,

It would be very nice to have a MultiSelect control such as Bootstrap MultiSelect by David Stutz:

https://github.com/davidstutz/bootstrap-multiselect

 

The problem with current multi-select control is that while it is very useful for applications with lots of screenspace, it is not ideal for business applications where every inch is very important. The Telerik multiselect is then at the following disadvantages:

1. It does not support Select All/Disselect All out of the box

2. It does not support "99 out of 100 selected".

3. It expands height when more items are selected, which is unacceptable for highly intensive data business applications, where numerous filters and rows of data need to be present at the same time on the page.

Are any plans to build such a control in addition to current MultiSelect?

Thank you
Unplanned
Last Updated: 24 Aug 2021 04:55 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
7
Menu, ContextMenu, TabStrip, PanelBar, Splitter have append, insertAfter and insertBefore methods.
kendoToolBar has only add, so there is no way to insert new command after/before other command.

Please add methods insertAfter and insertBefore to the kendo.ui.ToolBar widget.

Related forum post:
http://www.telerik.com/forums/insert-item-at-the-beginning
Declined
Last Updated: 20 Aug 2021 10:32 by ADMIN
Created by: atb00ker
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi,

 

The `alwaysVisible` option is ignored when we have an external DataSource.

Consider the following code:

 

```

var dataSource = new kendo.data.DataSource({
   pageSize: 2,
   data: [
       { name: "Jane Doe", age: 30 },
       { name: "John Doe", age: 33 }
   ]
});

$("#grid").kendoGrid({
   columns: [
       { field: "name" },
       { field: "age" }
   ],
});
var grid = $("#grid").data("kendoGrid");

grid.setDataSource(dataSource);

grid.setOptions({
   pageable: {
       alwaysVisible: false
   }
});

```

Here, since the `pageSize=2` and we have `2` records; I don't expect to see not the pagination and other pager options after `alwaysVisible` is set to `false`.
However, I do see them since `alwaysVisible` is completely ignored.

When I move the datasource back inside the `$("#grid").kendoGrid({})` everything works as expected.

Please let me know if this is an bug or I have mistaken in understanding something about the options.

Thanks,

Ajay

Declined
Last Updated: 20 Aug 2021 08:47 by ADMIN
Created by: Byang
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
Chart series labels template to include html elements. At the moment, adding HTML elements in a chart series label template is possible but you cannot do anything on those elements. Would be nice to be able to re-template the labels by adding HTML elements in them and be able to design these elements or attach events to these elements.
Declined
Last Updated: 20 Aug 2021 08:38 by ADMIN
Created by: Marc Simkin
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
Being able to trigger actions in other modules of one application is important.  Also, good design principles dictate that tight coupling of modules is not good.

In order to allow various modules to communicate with each other some sort of pub/sub or event routing framework should be implemented.

The Observable class is can be used as a starting point.

This new class should be tied to the presence of a DOM element.  This should be similar to how AngularJS handles events with $broadcast, $emit, and $on.

This could also be similar to the schemes describe in the below links:

https://keestalkstech.com/2016/03/strongly-typed-event-handlers-in-typescript-part-1/

http://www.wintellect.com/devcenter/jlikness/building-a-javascript-event-aggregator-using-typescript
Unplanned
Last Updated: 20 Aug 2021 08:17 by ADMIN
Created by: michael
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
Our business partners would like to be able to have gradients as part of the radial gauge color bar.  Similar to the following: 
http://i.imgur.com/DWfxi53.png
Completed
Last Updated: 19 Aug 2021 11:16 by ADMIN
Created by: Olga
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
When you mouse over notes would like to be able to show tooltip with some additional detailed information
Declined
Last Updated: 19 Aug 2021 11:09 by ADMIN
Created by: Craig
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be great to have a Widget that allows you to bind keyboard short cuts to a normal HTML element such as a Button or really an other element.

Additionally upon init, this widget would check for conflicts against other shortcuts provided by Kendo UI and provide the developer an exception explaining the conflict.
Completed
Last Updated: 12 Aug 2021 14:24 by ADMIN
Created by: Ben
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
3
Currently to show the HTML View of Kendo Editor with indents, you need an external JS. This would be nice to have out of the box.
Unplanned
Last Updated: 12 Aug 2021 14:02 by ADMIN
Created by: Ian
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
By design chart selection is supported only for categorical charts (bar, column etc.) but not for XY-charts (scatter, scatterline etc.). 

I'd like a similar UI for scatter charts to enable you to select data from the chart especially when the x axis is a time line.
Completed
Last Updated: 12 Aug 2021 13:56 by ADMIN
Created by: Бежнар
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Range area and column
A detailed description of the problem to the link: http://www.telerik.com/forums/range-area-and-column
Unplanned
Last Updated: 12 Aug 2021 13:55 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Be able to show an empty marker when the value is 0 for the sparkline like in this demo: http://dojo.telerik.com/@tsvetomir/ogiH/2

The demo use a hack to show the marker but it would good to have a real solution.
Declined
Last Updated: 12 Aug 2021 13:50 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
If the ranges can be more leveraged more information can be visualized in a single gauge and it allows for creating "custom bars".
The pointer value already accepts a margin.

Example:
 scale: {
                            majorUnit: 20,
                            minorUnit: 5,
                            max: 180,
                            ranges: [
                                {
                                    from: 80,
                                    to: 120,
                                    color: "#ffc700",
                                    margin: 10
                                }, {
                                    from: 120,
                                    to: 150,
                                    color: "#ff7a00"
                                }, {
                                    from: 150,
                                    to: 180,
                                    color: "#c20000"
                                }
                            ]
                        }