Unplanned
Last Updated: 19 Jan 2022 15:51 by ADMIN
Kendo's support for conditional number formatting results in it picking the negative or positive format even when the underlying value is being rounded to zero. This is generally not what users expect and is inconsistent with .NET's number formatting.

Here's an example:

kendo.toString(-0.1, "0;(0)") // results in "(0)" instead of the expected "0"

In contrast, .NET behaves differently:

(-.1).ToString("0;(0)") // results in "0"


It would be great if kendo's toString implementation incorporated this logic.

More information and examples are available in this Kendo forum post:
http://www.telerik.com/forums/kendo-showing-negative-zero-when-using-conditional-formatting-c729272b262d#0lTodzUtsEeF4d3xn8hhDA

There's also this StackOverflow question:
http://stackoverflow.com/questions/39977630/kendo-conditional-formatting-results-in-negative-zero
Unplanned
Last Updated: 19 Jan 2022 03:59 by Kasim
Created by: Deej
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
41
A quarter is not the same as 3 months in the same way that a week is not the same as 7 days. Feb-Mar-Apr is not a standard quarter. Kendo automatically lines weeks up on Sundays. Please consider doing something similar for quarters.
Declined
Last Updated: 17 Jan 2022 15:55 by ADMIN
Created by: Madani Benghia
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Developers should be able to specify grid column sort config property which is different from column field property.For instance, when listing products, my view model may have CategoryName property mapped from EF entity navigation property Category.Name using AutoMapper, while my sorting will use "Category.Name" on the server side.Example config could be like: 
columns[{title:"Category",field:"CategoryName",sort:"Category.Name"}]

This will allow me to flatten my view model without loosing sorting functionality.
Under Review
Last Updated: 06 Jan 2022 13:16 by ADMIN
Created by: Alex
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently there does not seem to be a way to get a reference to all kendo controls within a specified element or otherwise and perform generic operations on them.

I would propose you be able to call a JQuery method and do such things as the following:

    $(.kendoControlClass').each(function () {
        $(this).getKendoControl.enable();
    });

or call methods on specific type of controls

    $(.kendoControlClass-selectable').each(function () {
        $(this).getKendoControl.clearSelection();
    });
Completed
Last Updated: 06 Jan 2022 12:57 by ADMIN
Is Multiple File upload possible in imagebrowser ?

I would like to integrate upload (progressbar) with imagebrowser ?
Declined
Last Updated: 06 Jan 2022 12:47 by ADMIN
Using kendo UI file upload feature, currently we can upload or remove the files. I wanted to view the uploaded file (and download the uploaded file)
Completed
Last Updated: 23 Dec 2021 10:01 by ADMIN
A status-specific control would support max, min, targets, warning levels, etc and not be bound only to percentages as I see in the screenshots of http://www.telerik.com/support/demos or in the other dashboard sample. 
An example of this is:
http://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=home&demo=rootVisualizations_childGauge
Completed
Last Updated: 23 Dec 2021 08:42 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
The Kendo community is quite heavily developer-based. But as a designer, I need to create design comps using Kendo as a base for our interfaces. Designers need to have templates they can grab, otherwise designers like myself will have to rebuild what we see on the Demo site in our favorite graphics program.

We need .ai/.psd/.sketch versions of the Kendo UI interfaces, even better with skins too (we'll be using Nova as a base).
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: 23 Dec 2021 08:26 by ADMIN
Created by: Shauna
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
The kendo.drawing.TooltipOptions do not provide a 

show { duration: [time]} 

option that will allow showing the tooltip for a certain duration of time, after which the tooltip will disappear automatically.

Can this be added?
Declined
Last Updated: 22 Dec 2021 12:23 by ADMIN
Created by: Bradley
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
I am trying to find why some Kendo UI controls do not work, and do nothing at all.  No error, just flat do not work and don't give any clue about why not.  Was told about this extension for chrome?  great.  Installed and... ?  now what?  there is a Kendo icon in the upper right, ok let me click that.  it opens the "store" to get extensions of all sorts and types and says the kendo inspector tool IS installed.  ok, and..? if I look at page source?  nothing different.  How this tool is used is not obvious.  So put instructions of how to use it somewhere?
Declined
Last Updated: 22 Dec 2021 12:10 by ADMIN
Created by: Aravind
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Hi, Is there any control for image edit in kendo mobile ui, i mean after capture call image edit tool to edit image with few basic features like crop, brightness,rotate.
Unplanned
Last Updated: 20 Dec 2021 06:18 by ADMIN
Created by: Austin
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

For the Kendo Filter widget, being able to filter the list of fields in the dropdown list would be useful for longer lists and an event to see when the user added or removed a filter condition to manually set any other options for these lists. I have modified your sample filter in the browser console to add the filter to the dropdown in the screenshot here.

Completed
Last Updated: 16 Dec 2021 13:47 by ADMIN
Created by: Marius
Comments: 10
Category: Kendo UI for jQuery
Type: Feature Request
47
A heatmap (grid-style at least) is very much useful in any decent project management application. A widget that could remotely connect color-shades to jSON data would be really great.
Unplanned
Last Updated: 16 Dec 2021 12:30 by ADMIN
Created by: RRT
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
1
The interface for PromptOptions does not extend DialogOptions like it should. I added it into my definition file, and it compiles and works fine when testing.

    interface PromptOptions extends DialogOptions {
        name?: string;
        messages?: PromptMessages;
    }
Unplanned
Last Updated: 16 Dec 2021 12:28 by ADMIN
..,or make it at least optional when using grouped column headers. Scenarios with many or repeating column titles would extremely benefit from this. 
Unplanned
Last Updated: 16 Dec 2021 12:20 by ADMIN
Created by: Danny
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
Kendo UI pivotgrid should have a way to customize the filters.  Specifically have a date picker for date fields and a date range.  But something so we can override what the default is.
Unplanned
Last Updated: 16 Dec 2021 12:19 by ADMIN
It would be nice to apply known Excel formatting options to our export cells. For instance, we'd like to be able to rotate a cells content 90 degrees, which Excel allows, but we aren't allowed to add that custom formatting because Kendo's export doesn't handle it.
Declined
Last Updated: 16 Dec 2021 12:14 by ADMIN
Unplanned
Last Updated: 16 Dec 2021 12:11 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
6
Spreadsheet does not have a configuration option for maintaining the scroll position per sheet when scrolling horizontally. Currently spreadsheet maintains the common scrolling position whenever we move different sheets.