Completed
Last Updated: 23 Feb 2016 20:21 by Kohinoor
Created by: Gary
Comments: 9
Category: Kendo UI for jQuery
Type: Feature Request
15
Tooltips (especially in charts) get clipped. Need to ensure tooltip is posted in display area.
Completed
Last Updated: 23 Jan 2020 12:17 by ADMIN
Try tabbing through a form with a bunch of inputs and tabbing onto a button at the end. Although it works you can't tell because the button doesn't indicate the focus!
Declined
Last Updated: 15 Jun 2017 19:12 by Venkatesh
Created by: Dmitry
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
 if I want make my custom header (image, few rows, others) I can't do it - I need to write "title:false" and to come up the implementation of title in content.

I propose to add a few lines in the code to be able to customize header:

1. To templates:
	templates = {
		...
		existtitlebar: template(
			"<div class='k-window-actions k-header'>" +
				"# for (var i = 0; i < actions.length; i++) { #" +
					"#= action({ name: actions[i] }) #" +
				"# } #" +
			"</div>"
		),
		...
	};
2. To function "createWindow(element, options)":
	instead of "if (options.title !== false) wrapper.append(templates.titlebar(extend(templates, options)));"
	next:
		if (options.title !== false) {
			var header = contentHtml.find(KWINDOWTITLEBAR);
			if (header.length == 0) wrapper.append(templates.titlebar(extend(templates, options)));
			else wrapper.append(header.append(templates.existtitlebar(extend(templates, options))).detach());
		}

And if I write:
<div id="window">
	<header class="k-window-titlebar"><img src="some_image.png"/> Test header</header>
	Content of the Window
</div>
...
$(document).ready(function() {
	$("#window").kendoWindow();
});

I get next (ex.):
<div class="k-widget k-panel" style="padding-top: 26px; ">
	<header class="k-window-titlebar k-header" style="margin-top: -26px; ">
		<img src="some_image.png"/> Test header
		<div class="k-window-actions k-header"></div>
	</header>
	<div id="window" data-role="window" class="k-window-content k-content">
		Content of the Window
	</div>
</div>


P.S. Possible the content of "header" should be placed in "span class='k-window-title'". In this case the new template is not needed. Only override "options.title" in "createWindow".
Completed
Last Updated: 20 Nov 2014 18:35 by ADMIN
Created by: Tony
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
141
Please do for PHP devs what you've done for .Net devs in the Q2 release! 
Declined
Last Updated: 23 Jan 2020 10:50 by ADMIN
Created by: Josh
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Provide default mode for Kendo Mobile.

When working in kendo mobile web applications, give the user the ability to specify a default or fallback render mode if iOS, blackberry, or droid are not found.

Implement it much in the same way you implement the platform application property but instead of saying use this platform for all render modes, this property would equate to saying use this mode IF none of the other supported modes within Kendo Mobile are not found.

This also would be good for future development as you add render modes we could response with our "default" style.
Declined
Last Updated: 27 Feb 2015 21:27 by ADMIN
Created by: Robert
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
As per this forum post: http://www.kendoui.com//forums/mvc/grid/bug-grouping-name-does-not-honor-mvc-attributes.aspx, the MVC Helpers for the Grid honor the Display attribute in certain situations, but not others.Namely, when a column with a [Display] attribute is turned into a Group, the DisplayAttribute.Name is no longer honored.

But even that is technically not the correct behavior. The correct behavior is for the group to use DisplayAttribute.GroupName, then DisplayAttribute.Name if the GroupName is not specified.
Declined
Last Updated: 23 Jan 2020 10:52 by ADMIN
Created by: Imported User
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
18
For KendoUI Mobile, it would be great to have a controle that display an alphabetical index (a-z), much like the Windows Phone 7 jump list. 

This could be bound to the first letter filter property of a list control (grid or else). 
Completed
Last Updated: 16 Aug 2012 04:17 by ADMIN
Created by: Psmontte
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
Rather than working on you own MVVM implementation you should provide support for full KnockoutJS as other vendors like Infragistics & ComponentOne have done. Very few of us would want to get tied with your MVVM implementation which would make moving to other controls in future difficult.

With lack of documentation working with your controls is a nightmare.

Declined
Last Updated: 20 Nov 2014 18:35 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be nice to have a control such as iOS datetime picker
http://www.dosomethinghere.com/wp-content/uploads/2010/11/datetimepicker.png

- and it would be even better if we coulld have a combobox similar to the datetime picker where we have only one scroll to select a perticular text!!
Completed
Last Updated: 10 May 2016 16:36 by ADMIN
Created by: Numan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
Routing is important for building single page apps which is missing from framework right now. 

Routing component of Backbone is very nice. Simple and intuitive. A library similar to this that is integrated into the core framework would be great.
Declined
Last Updated: 20 Nov 2014 18:35 by ADMIN
ASP.NET MVC 4 RC bundle and minimize function useless with kendoui's CSS.
When ASP.NET MVC-s built-in bundling is enabled, kendoui's css-es are broked in the minification.
There are some other miscrepancy between MVC 4 default sites.css and kendoui's CSS-es. 
I'm using 2012.1.322 kendoui version.
Declined
Last Updated: 10 May 2016 16:56 by ADMIN
Created by: Saurav
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
44
 the splash image while loading the web app initially, well, at least for the ios devices.
Completed
Last Updated: 11 May 2016 07:26 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
3
Completed
Last Updated: 09 Apr 2015 13:47 by ADMIN
Created by: Troy
Comments: 30
Category: Kendo UI for jQuery
Type: Feature Request
244
Combob support for paging would show use the datasource paging settings similar to the grid control and show a label at the bottom as you scroll (Ex. "Displaying 10 of 100 items) and as you scroll increment the items in the list by the configured page size from the datasource.
Declined
Last Updated: 13 Jun 2013 18:32 by ADMIN
Created by: Jaap
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I want to ask you to add support for this type of call to kendo.format:
    kendo.format('{0} - {1}', [3, 5]);
Of course this is not useful if you have the parameters in seperate variables.
But it is useful if you get the format and the parameters from some external source and that delivers the parameters as an array.
Completed
Last Updated: 27 Feb 2015 21:22 by ADMIN
Created by: Oscar
Comments: 23
Category: Kendo UI for jQuery
Type: Feature Request
80
AngularJS, which just released 1.0, is gaining a lot of fans (including myself and my developer-friends). There already is an AngularJS adapter for jQueryMobile, and I hope the KendoUI Team will work on an AngularJS adapter for KendoUI very very soon. I think a solid AngularJS adapter implementation will pull my team over to KendoUI for good.
Completed
Last Updated: 22 Nov 2013 16:30 by ADMIN
Created by: Erik
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
8
Development of a Kendo IDE

Has Telerik/Kendo plans to develop its own IDE?  A Wakanda-like IDE, with both design and source mode possibilities, would be very welcome and will give Kendo a real (commercial) boost!
Completed
Last Updated: 27 Feb 2015 21:25 by ADMIN
Created by: Imported User
Comments: 18
Category: Kendo UI for jQuery
Type: Feature Request
145
To support various language,
I think KendoUI need language pack system.

Current globalization supports only currency, number format and few label for calendar.

It's so hard to change default english label for buttons and messages.
Sometimes, It's hardcoded in kendo.js file.

It's much better to handle such things in one language file.
Not with individual configuration.
Declined
Last Updated: 18 Jun 2013 18:20 by ADMIN
Created by: Clay
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
We have a need for a disabled option in the drop down list. I tried it with the Kendo UI dropDownList control, but the disabled attribute was removed in the rendering process.  It is a nice control, but it could use some additional functionality.
Completed
Last Updated: 27 Feb 2015 16:50 by ADMIN
Created by: Imported User
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
23
http://css-tricks.com/responsive-data-tables/