Unplanned
Last Updated: 17 May 2023 13:59 by Simon
Created by: Michael
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
17
I am showing gauges right next to charts, but the gauge doesn't have a title like the charts do.  I'm going to have to create and position my own title, and style it just like the charts.  It would be nice if the gauge had a title, and seems like a fairly easy addition.  Thanks!
Declined
Last Updated: 10 May 2016 13:50 by ADMIN
Created by: Денис
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
38
Example of existing:
http://jscrollpane.kelvinluck.com/

Standart scrolling in windows sucks (and takes mush space).
,Kendo Grid has to have designable scrolls, pls :)
Declined
Last Updated: 12 Jun 2013 23:26 by ADMIN
Our data model classes look kind of like this:

public abstract class VMBaseDynamic<TViewModel, TModel> {
public object Id { get; set; }
}

public abstract class VMBaseGeneric<TViewModel, TModel, TIdentifier> : VMBaseDynamic<TViewModel, TModel>
{
public new virtual TIdentifier Id {...}
}

So anything that subclasses from them has two Id properties, the one in VMBaseDynamic hidden in VMBaseGeneric.

The reflection code in the newest Kendo code, in GridEditableSettings.CreateDefaultItem, calls GetProperty() on the data model class for each of the column names.  One of them is "Id".  It finds two, and chokes with an "ambiguous match found" error.  I ended up working around this by adding a function which searches through the class's ancestors for the first matching property, as in http://stackoverflow.com/questions/994698/ambiguousmatchexception-type-getproperty-c-sharp-reflection; you may want to consider this as a friendlier approach in future.
Declined
Last Updated: 18 Oct 2012 15:16 by ADMIN
Created by: Kuldeep
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be great if there was ability to freeze key columns in grid similar to freeze pane in excel this is a much demanded functionality atleast in my organization
Declined
Last Updated: 10 May 2013 15:17 by ADMIN
Hello,

I want to update the kendo ui version to 2012.2.913. but couldnt find the proper link to update it. please help me.

Thank You
Declined
Last Updated: 27 Feb 2015 21:23 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
21
There is no way to use tree as a column in a grid.
A TreeGrid would use hierarchical datasource where one column would show nodes and other columns would show node properties.

Here is an example (from Sencha Ext JS)
http://dev.sencha.com/deploy/ext-4.1.0-gpl/examples/tree/treegrid.html
Completed
Last Updated: 20 Nov 2014 18:43 by ADMIN
Our team immediately noticed the different behavior of the Kendo DropDownList. Exactly as outlined in this forum post: 

http://www.kendoui.com/forums/ui/dropdownlist/dropdown-list-and-using-alpha-key-for-next-item.aspx

Hitting the same alpha-key multiple times should cycle through the entries that begin with that letter.
Declined
Last Updated: 12 Jun 2013 23:36 by ADMIN
Created by: OnaBai
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Right now, it is not possible to specify data-max or data-min for fields as time or dates (data-role="datepicker", data-role="timepicker"...) since the parsing of the options only recognizes null, true, false, float and JSON objects (NOTE: it works fine if you use kendoTimPicker({min:...}).

So I propose to change parseOption in kendo.core.js for adding an extra condition as:
else if (evalRegExp.test(value)) {
            var res = evalRegExp.exec(value);
            if (res[1] !== null) {
                value = eval(res[1]);
            }
        }
where evalRegExp is:
evalRegExp = /^eval\((.*)\)/
and its usage would be define data-min="eval(new Date(2000,1,1,6,0,0))"
Any option that matches eval(.*) would be returned as result of evaluating it.

The final code would be:
    var templateRegExp = /template$/i,
        jsonRegExp = /^\s*(?:\{(?:.|\n)*\}|\[(?:.|\n)*\])\s*$/,
        jsonFormatRegExp = /^\{(\d+)(:[^\}]+)?\}/,
        dashRegExp = /([A-Z])/g,
        evalRegExp = /^eval\((.*)\)/;

    function parseOption(element, option) {
        var value;

        if (option.indexOf("data") === 0) {
            option = option.substring(4);
            option = option.charAt(0).toLowerCase() + option.substring(1);
        }

        option = option.replace(dashRegExp, "-$1");
        value = element.getAttribute("data-" + kendo.ns + option);

        if (value === null) {
            value = undefined;
        } else if (value === "null") {
            value = null;
        } else if (value === "true") {
            value = true;
        } else if (value === "false") {
            value = false;
        } else if (!isNaN(parseFloat(value))) {
            value = parseFloat(value);
        } else if (jsonRegExp.test(value) && !jsonFormatRegExp.test(value)) {
            value = $.parseJSON(value);
        } else if (evalRegExp.test(value)) {
            var res = evalRegExp.exec(value);
            if (res[1] !== null) {
                value = eval(res[1]);
            }
        }

        return value;
    }
Completed
Last Updated: 20 Nov 2014 18:41 by ADMIN
Add a function that will return the Kendo UI version we are working with.

Getting versions of the underlying librairies (Like JQuery) could also be interesting
Completed
Last Updated: 23 Mar 2015 17:35 by ADMIN
Created by: Loren Dorez
Comments: 13
Category: Kendo UI for jQuery
Type: Feature Request
118
HI Telerik,

We are coming over from the AJAX suite and have to say that the demos and documentation are horrible at best.

One of the greatest strength we have seen with Telerik has been your demos of almost every variation and sample most people could come by with news ones added quite often. If there wasn't a demo you were almost sure to find it in the Documentation.

The last place to look before contacting Telerik is the FORUMS but this is impossible with the way KendoUI forums use the search. It search ALL forums not just the current sub forum and pulls things back like Client Log-in pages etc.. The forum search needs to work more like the Main Telerik Forum site otherwise its impossible to use the forum unless you want to go through each forum page by page

The keno UI demos are geared towards just the client side. There is very little show how to do things with the server wrapper for MVC. It would also be nice to show the service code as well for things like the data source read, create, update and destroy events for widgets like the grid etc..

Here is a sample. http://demos.kendoui.com/web/grid/editing-custom.html
The demos shows the client side HTML version and if you choose the RAZOR syntax it is a completely different code than what is in the demo above.

The lack of documentation makes it very frustrating to use the KendoUI. New features are great but if there isn't adequate documentation to support how to implement then many features will go unused.

I hope you guys will take a serious look at the KendoUI Demo and documentation and consider making it an immediate priority to address.
Declined
Last Updated: 07 Jun 2013 22:21 by Patrick
It would be good if you could enable the KendoUI for MVC buttons to have an "image + text" look and feel in the same way that the Telerik MVC Extensions did.

Thanks 
Declined
Last Updated: 10 May 2013 19:33 by ADMIN
I shouldn't be penalized in having to write more code to get kendo validation working with kendo controls.  You guys should know I'm validating a KendoNumericTextBox and auto-place the span in the appropriate spot outside of the control.

http://www.kendoui.com/forums/framework/validation/error-tooltip-showing-up-in-the-picker.aspx
Completed
Last Updated: 20 Nov 2014 18:41 by ADMIN
Created by: Yrjo
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
3
It would be like navbar but separately stylable (by default black) and one that can be placed into a footer. Like navbar it could hold buttons, only title would be omitted
Declined
Last Updated: 06 Jun 2013 18:31 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
5
if you compare the rad editor with the Kendo wysiwyg editor, the Kendo one lacks the wide range of functionality. It would be nice if they were the same.
Declined
Last Updated: 27 Feb 2015 21:22 by ADMIN
When the destroy operation fails for some reason (exception or ModelState error) the item on the client will be removed.
Don't remove the item from the grid if operation fails in the backend.
 
Unplanned
Last Updated: 26 Jul 2019 07:05 by ADMIN
Created by: Robert
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
7
Often, working with the Kendo events is difficult, because the events lack any kind of context. For example, the Change event should also pass back OldValue and NewValue, in case you need to do any additional comparative work on your own, without having to figure out how to get back to the DataItem and figure it out for yourself.

Also, if you are handling a Grid row changed event, or cell changed event, at the very least you should be passing the Uid of the row that changed, so I can get it from the data source. 
Declined
Last Updated: 10 May 2013 19:34 by ADMIN
Created by: Michael Sogos
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0
We are using Metro theme, and many clients say us that is a little bit difficult to distinguish parent from child items in a panelbar because they are too similar. Is possible to introduce an left padding to recreate a fake tree?
Declined
Last Updated: 23 Sep 2021 10:58 by ADMIN
Created by: Bill
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
I would like to see how you would integrate one of Kendo UI's more complex web demos (e.g. the detail template for the grid)  into a backbone view
Completed
Last Updated: 27 Feb 2015 21:22 by ADMIN
Created by: Elio Querze
Comments: 14
Category: Kendo UI for jQuery
Type: Feature Request
30
See http://www.highcharts.com/demo/line-basic for a good example of  Client-side Chart Export
Completed
Last Updated: 20 Nov 2014 18:40 by ADMIN
Created by: Imported User
Comments: 11
Category: Kendo UI for jQuery
Type: Feature Request
191
My number one suggestion for Kendo UI would be a Kendo UI kind of bootstrap / foundation. 

We all know Twitter Bootstrap and Zurb Foundation. The main advantage of these html frameworks are in my opinion:

#1. Rapid development of layouts
#2. html elements are supported (forms, tables, buttons)
#3. Reponsive (and in some cases fluid) grid. 
#4. Usuable threwout the internet (ie, firefox, chrome, safari etc).
#5. User Friendly to start and work with.

In the first place I am not suggesting to integrate one of those (that would be my second..) My first suggestion is, make one of your own (fork it or what ever? to start) So that we have not only a html foundation of the project, the elements are also fully integrated with each other. So you can have one uniform theme threw out the whole website / project.

So.. That is my first suggestion, and ofcourse the second one related to this one is, when you guys dont want to create your own, integrate a (lets call it css/html framework) that is fluid (because in my opinion, kendo ui is really for business software, and with fluid width you can have more information on your screen..) 

Hopefully you take this suggestion in consideration. It would really make a different!