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
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>
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. 
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: 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.
Declined
Last Updated: 18 Jun 2013 18:23 by ADMIN
Created by: Vincenzo
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Declined
Last Updated: 06 Dec 2011 12:22 by ADMIN
Created by: Baris
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Also added to the file manager and editor will be perfect
Declined
Last Updated: 10 May 2013 19:34 by ADMIN
Created by: sitefinitysteve
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I'd love to be able to do fractions in the NumericTextBox

...fractions are numbers too! ;)
Completed
Last Updated: 05 Jun 2013 22:33 by ADMIN
Created by: Alvin
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Now that the Kindle Fire devices are flying off the virtual shelves, it would be cool to add Silk support for Kindle Fire devices. Not sure how you do that or if it's even possible... just putting it out there.
Completed
Last Updated: 20 Dec 2011 01:23 by Tony
Created by: Tony
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be nice if either through the framework or the individual widget config settings to be able to identify dependent widgets. For example chain combo boxes or drop downs based on selection (country -->states-->city). Probably auto complete, combos and dropdowns (and list widgets when we have them) would all be much improved with this feature.

Thanks for considering....heck, thanks for asking!
Duplicated
Last Updated: 15 Jun 2020 12:19 by ADMIN
Created by: Tony
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
One of the important features of any grid based pages is the ability to export the grid data in various formats. It's what is keeping me now from replacing all of the Datatables in my app with Kendo grids.The table Tools plugin for datatables is a great example, providing pdf, csv and excel exports all with aggregates, grouping and basic formatting options. 

I;m hoping the next release has at least csv and/excel exporting options. Please also consider a UI column show/hide feature, again, similar to datables plugins.

I know the Kendo grid will eventually have all of this, but the sooner the better for those of us looking to move projects built with beta products (datatables) with more features to Kendo UI.

Thanks!
Declined
Last Updated: 13 Jun 2013 21:00 by ADMIN
Created by: TazDeveloper
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Add a dropdown text value that can be turned on or off, like "Anytime" or "None Selected".  Or even better allow the programmer to change this value.  One example where it is needed:  In an Air Search on a travel site, there is a time value that can be sent to the reservation systems for finding flights.  It is not mandatory, but it does change the results provided if time is included.  In the current implementation, there is no way for a user to not choose a value.
Declined
Last Updated: 18 Jun 2013 18:16 by ADMIN
Created by: Tony
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be nice to have an option to include a distinct list of a columns data appear in the column filter as in the silverlight grid example 

http://demos.telerik.com/silverlight/#GridView/FirstLook

Again, as an option when configuring a grid on a column by column basis. 

Thanks!
Completed
Last Updated: 27 Feb 2015 21:26 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Add support for multiple axis for charting.
Declined
Last Updated: 19 Jan 2012 15:05 by ADMIN
Created by: max m
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
The page can contain a text field that may have a different type depending on other conditions. It would be nice to remove widget and initialize another one on the same text field.
Completed
Last Updated: 27 Feb 2015 21:24 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
a grid with an editable column will show if there is no data in datasource. 
Completed
Last Updated: 27 Feb 2015 21:25 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
is the kendo ui supported in tablet?
Declined
Last Updated: 27 Feb 2015 21:29 by ADMIN
Or will I still need to use CkEditor?
Declined
Last Updated: 09 Nov 2012 09:34 by ADMIN
Scrolling using the scroll bar works just fine.

Firefox 9.0.1