Declined
Last Updated: 18 Jun 2013 18:23 by ADMIN
Created by: Vincenzo
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Completed
Last Updated: 20 Nov 2014 18:17 by ADMIN
Created by: Mono
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
108
I would really like a ProgressBar control. The reason why I want a progressbar control in kendo ui is so that the look and feel of my application is consistent throughout.
Completed
Last Updated: 20 Nov 2014 18:17 by ADMIN
Created by: michael
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
7
The minimize function does not work when added to a kendoWindow. A North pointing triangle is added to the title bar bu nothing happens when clicked.

Also restricting the Maximize to the parent containier (DIV) as suggested by another user should be implemented soon.
Completed
Last Updated: 07 Feb 2017 14:08 by ADMIN
Created by: Vincenzo
Comments: 7
Category: Kendo UI for jQuery
Type: Feature Request
54
ASP NET MVC provides jquery.validate.unobtrusive validation that, using jQuery validation, let us set validation attributes into model class.
http://weblogs.asp.net/mikaelsoderstrom/archive/2010/10/06/unobtrusive-validation-in-asp-net-mvc-3.aspx
Would be nice if it may work also with kendo ui validation.
Completed
Last Updated: 27 Feb 2015 21:32 by ADMIN
Created by: PPCnSEO
Comments: 8
Category: Kendo UI for jQuery
Type: Feature Request
42
You have datepicker.
You have timepicker.
Why not datetimepicker?

A single input box that selects both a date and a time.

Should be fairly straightforward, it just needs to display both ui widgets simultaneously and handle the different parsing in and output logic.
Completed
Last Updated: 20 Nov 2014 18:18 by ADMIN
Created by: patrickdelaet
Comments: 8
Category: Kendo UI for jQuery
Type: Feature Request
63
I'm following the launch of Kendo UI closely.
IMHO what Kendo has to do right now is post a demo of a medium sized web app (>20 screens) showing us how to integrate al the pages eg via the menu widget.
The To-Do-List sample app is learning us nothing.
2 years ago, I've bought, studied, tested, flamed, ... ExtJs and never got to the point of building a decent web app.
This was THE MAJOR complaint of the ExtJs newsgroups. They have a lot of small widget demos but how do we integrate them into a medium sized app eg a webshop.
So, Kendo UI, please don't make the same mistake. 
Show us a medium sized web app with all the widgets and - most important - how they interact with each other.

regards

Patrick De Laet
patrick@fijisoft.be
Completed
Last Updated: 20 Nov 2014 18:18 by ADMIN
Created by: Jadranko Dragoje
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
39
Create RichTextEditor Widget which is integral part of all content management systems. Also, it would by nice to create checkbox widget.
Completed
Last Updated: 20 Nov 2014 18:17 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Right now, editing in the grid seems to be on a per-cell basis.  I would prefer a model where each row has an edit button, and when clicked, it would put the row into edit mode.  A save / cancel button would then be available to validate and save or cancel the edit.
Completed
Last Updated: 20 Nov 2014 18:17 by ADMIN
Created by: Nuno
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
7
My Team created a Dashboard Silverlight App built using Silverlight RadControls. So we have lots of chart types with cool features as drill down, gauges.
Now, we are looking forward to move to HTML5 soon... in order to do that we need all this rich widgets ASAP in Kendo UI.

Thanks!
Completed
Last Updated: 24 May 2013 20:00 by ADMIN
Release a guide similar to the jQuery UI one which shows the best practices to develop our own "kendo ui conform" widgets and allow and document the code reuse - like globalization - from our own widgets.
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