Completed
Last Updated: 27 Feb 2015 21:27 by ADMIN
Created by: Will Huang
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
5
Allows to bind, fire and assert key combination strings against all these Kendo UI widgets and events. Such as using keyboard shortcut to handle grid row selection or using keyboard shortcut to go to next page ... etc.
Declined
Last Updated: 29 Nov 2011 16:57 by ADMIN
Created by: Massimo
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Would be nice to be able to define custom components and inject them into pre-built components. In general, it will be great be able to create simple UI components and aggregate them in a complex component.

For example, create a custom details window and use it in a grid or in the scheduler or on a page. 
Declined
Last Updated: 27 Feb 2015 21:27 by ADMIN
Created by: Kyle
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
It would be nice in the grid or treeview modules to have a "DblClick" event handler. 
Declined
Last Updated: 13 Jun 2013 17:40 by ADMIN
Created by: J.P
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
A direct and simple way to build a tree from an Object : 
Work fine like that but a shorter way would be better
a.k.a ~ $("#mytree").kendoTreeView({'ObjectSource':myObject)
try this html to have a better idea of what i suggest.
Thanks


<body>
<ul id="mytree"/>
<script>

         $(document).ready(function() {

         		 var myObject = {  "who"    : [ "french", "man", "old geek", { "age": "49", "status" : "with a wonderful wife" } ],
                                       "living" : { "Europe" : { "France" : { "cities" : ["Paris","Bretagne"]}}},
                                       "loving" : [{ "langages": ["KendoUI", "Node.js"]}, { "other" : "chocolate" }]
                                    };


                 var ObjToHtmlUlLi  = function (obj) {
                                            var result = "";
                                            if (obj instanceof Array) 
                                                for (i in obj)
                                                    result += "<li>" + ObjToHtmlUlLi(obj[i]) + "</li>";
                                            else  if (obj instanceof Object)
                                                        for(i in obj)
                                                              result += "<li>" + i + "<ul>"+ObjToHtmlUlLi(obj[i])+"</ul></li>";
                                            else
                                                result += "<li>"+ obj + "</li>";
                                            return result;
                                           };

                $("#mytree").html(ObjToHtmlUlLi(myObject));
             	$("#mytree").kendoTreeView();
                //=> somethins like   $("#mytree").kendoTreeView({'jsonSource':myJsonObject) would be great
        });
</script>
</body>
Completed
Last Updated: 19 Jul 2012 11:27 by ADMIN
Created by: DDarko
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
5
In widget "menu" option "direction" would be handy.
So you can easily insert the menu under a component and to develop to the top.
Would be nice to be able to place the menu on the right or left.
Completed
Last Updated: 05 Dec 2011 13:30 by ADMIN
Completed
Last Updated: 20 Nov 2014 18:17 by ADMIN
Created by: Leandro de los Santos
Comments: 30
Category: Kendo UI for jQuery
Type: Feature Request
135
Simple edit like <input type="text" but with full support of skins and Mask. With this the current date piker and roadmap numeric input you gave a full control scheme with all the skins applied.
Declined
Last Updated: 10 May 2013 19:34 by ADMIN
Created by: Vesselin
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
I'm reposting this as a bug since currently when multiple windows are created, the zIndex never gets adjusted like in telerik.window.js hence it is impossible to have dynamically created windows without having to fix the zIndex manually for each new window. And once you adjust the zIndex on one window, it always stays on top.

Original post with comments:

http://kendo.uservoice.com/forums/127393-kendo-ui-beta-feedback/category/31821-bugs
Completed
Last Updated: 20 Nov 2014 18:17 by ADMIN
Created by: Luc
Comments: 38
Category: Kendo UI for jQuery
Type: Feature Request
340
Please consider adding a Pivot Grid control to your UI library.
Completed
Last Updated: 20 Nov 2014 18:17 by ADMIN
Created by: Cary Abramoff
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
5
From: Cary Abramoff
Date: 11/14/2011 6:11:04 PM
Hi,

I have a need to have multiple windows interact.

The problem is, unlike your RadWindows for Ajax which will always be on top after receiving a mouse click, not so with the Kendo UI windows.

I will explain.

I open window A.

Window A launches window B.

Window B is UNDER window A.

I have written JQuery to search for the divs with the k-window classes, find the title span, and set the z-index behaviors I want but this is not as elegant as the behavior of your own RadWindows in the Telerik Ajax suite which I use on my other big ASP.NET project.

I believe your windows need to do 2 things for official v1 release.

A- Minimize

B- Whenever a window receives focus it should have the highest z-index. 

Thanks!!

Cary
Completed
Last Updated: 03 Nov 2015 18:14 by ADMIN
Created by: Brad
Comments: 13
Category: Kendo UI for jQuery
Type: Feature Request
22
I imagine this would be difficult, but it's a feature that we would most certainly need if we ever were to make this our primary framework...  A server-side excel file could be generated as-is, but the problem is that users expect the document to be identical to the grid they are viewing.  If they do any filtering/grouping/sorting, they expect the resulting excel document to match.  The current Telerik winforms RadGridView does a wonderful job at this and produces an xml excel document - this would be the ideal behavior to duplicate..
Completed
Last Updated: 23 Mar 2012 16:46 by ADMIN
Created by: Sveto
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
Grid on grouping show count of the grouped items in the group header. Its a pretty known functionality.
Completed
Last Updated: 20 Nov 2014 18:16 by ADMIN
Created by: Wolfgang
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
67
Please provide support (e.g. base classes) to help structuring and modularizing applications. Otherwise the framework is another control library and will not compete with full JS/HTML5 like frameworks like Sproutcore, ExtJS4. Most of the UI frameworks lacks of such support, especial for building serious enterprise applications.
Completed
Last Updated: 20 Nov 2014 18:16 by ADMIN
Created by: Vesselin
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
7
Please add labelText option to the DropDown and ComboBox controls so it would be easier to add labels instead of having to manipulate the data source (especially when using a remote data source) to insert a first option as a label. This is currently an annoyance with the Telerik Controls as well. Thank you.

Something simple like:

$('#Country').kendoDropDownList({...
  dataTextField: "CountryName",
  dataValueField: "CountryCode",
  labelText: "[Select Country]"
});

This would eliminate lots of unnecessary coding or messing with the .js files to implement this ourselves (and having to re-do it each time when upgrading).
Completed
Last Updated: 27 Feb 2015 21:25 by ADMIN
Created by: Kevin
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
35
I would really like to see a Gauge control similar to what is available through the Telerik Silverlight controls.
Declined
Last Updated: 22 Jan 2020 13:56 by ADMIN
Created by: Marty
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
4
Having the ability to do "in-line edits" can sometimes be helpful.  Here is a link to a jquery plugin I use often. Perhaps this would be something useful for Kendo.

http://www.appelsiini.net/projects/jeditable
Completed
Last Updated: 23 Sep 2019 09:26 by ADMIN
Created by: IKKI
Comments: 23
Category: Kendo UI for jQuery
Type: Feature Request
66
SNS and e-business always use this for make a comment.
Completed
Last Updated: 20 Nov 2014 18:16 by ADMIN
Created by: IKKI
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
10
Just like jqGrid~ and user can chioce which col can be hide~
Completed
Last Updated: 20 Nov 2014 18:16 by ADMIN
Created by: Franz
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
it seems that KendoUI will replace Telerik MVC Controls in near future. Yet there is no clear update path to inform developers about the migration roadmap (when will the mvc controls expire?). As a customer who recently bought MVC Controls, I'm also hoping for update discounts or some "grace period" (e.g. get a free kendo ui license if you bought the MVC controls 3 months before Kendo's launch)
Completed
Last Updated: 28 Jul 2020 19:17 by ADMIN
Created by: IKKI
Comments: 20
Category: Kendo UI for jQuery
Type: Feature Request
95
When we do some pages just like register, we need step by step, a smart wizard plugin will be useful.