Declined
Last Updated: 20 Nov 2014 18:37 by ADMIN
DatePicker/TimePicker.
Please consider adding an option to hide/show datepicker icon, and the another option to show the datepicker popup on field focus.
Both of these options are available in the Telerik Asp.NET Mvc Ext 
Completed
Last Updated: 23 Jan 2020 10:54 by ADMIN
Created by: SÅ‚awomir
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
6
Provide graph control that could display relations between people, objects, etc. 
Completed
Last Updated: 23 Jan 2020 11:34 by ADMIN
You have this .k-state-disabled class in kendo.css but it's not used in scripts. That's why I forced to copy all .k-state-disabled class styles to new class like

.k-button:disabled, .k-button:disabled:hover, .k-button:disabled:active {
background-color: #E3E3E3;
border-color: #C5C5C5;
color: #9F9E9E;
opacity: 0.7;
cursor: default;
outline: 0 none;
}

(this is my temporary solution)
Declined
Last Updated: 22 Jan 2020 07:27 by ADMIN
Created by: John Farrar
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
12
While I think it is great you guys are doing support for Visual Studio where is the support for DreamWeaver? Is there anyone working on this? There is a jQuery Mobile set of tags in the "Insert" section of the IDE. It would be great if we had a set of tools for Kendo UI Web, Charting and Mobile.
Completed
Last Updated: 21 Nov 2014 14:19 by ADMIN
Hi what is the latest on this please?
Declined
Last Updated: 09 Nov 2012 09:33 by ADMIN
Created by: Charlie
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
There is a error in the grid demo http://demos.kendoui.com/web/grid/index.html. This is in the Virtualization of local data section. The Error says "stop running this script? A script on this page is causing IE to run slowly. If it continues to run, your computer might become unresponsive."
Declined
Last Updated: 10 May 2013 15:22 by ADMIN
Created by: Timothy Erwin
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Completed
Last Updated: 08 Jul 2021 09:24 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
7
Support for multiple pointers in guages
Completed
Last Updated: 06 Feb 2016 16:58 by Alex
Created by: Mac
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
31
I am put off using KendoUI because of the limiting nature of theming and styling the controls especially the sprites

They don't scale well, can't be coloured and are hard to replace without lots of css editing. 
Completed
Last Updated: 16 Sep 2021 17:06 by ADMIN
Release 2021.R3
Created by: Michael Sogos
Comments: 16
Category: Kendo UI for jQuery
Type: Feature Request
68
I'm using kendo ui for mvc and a control that could be very useful is a captcha for form submission.For sure you can integrate it by using Google reCaptcha in a easy way not only for kendo ui for web but for mvc also.A good idea could be to integrate you own captcha control (for intranet environment, or private internet network ) because reCaptcha only work with a stable internet connection (Google Web Service).
Declined
Last Updated: 20 Nov 2014 18:37 by ADMIN
Created by: Shawn
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
5
With native IOS, Android programs we can put the field prompt (for example User or Password) as a string in the input field that goes away when data is entered and when the field is cleared shows up again.  Is this possible to add?
Completed
Last Updated: 23 Sep 2021 10:52 by ADMIN
It's obvious enough. I made normal size buttons with plus/minus functionality but there is no "minus" icon now.
Declined
Last Updated: 23 Jan 2020 12:14 by ADMIN
Created by: Rui Marinho
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
 I hate to create or have hardcoded ui in my view. 
Similiar with what Silverlight does with the dataform ,if i bind my form to a model for each property in my model  Kendo could create the label and the right input field on the ui.
Declined
Last Updated: 20 Nov 2014 18:36 by ADMIN
Created by: Pritpal
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
We just want to update/edit the Mysql data. Is there any possibilities to do this type of job in Kendo Editor. Please provide me suitable help on it. 
Declined
Last Updated: 09 Nov 2012 09:31 by ADMIN
Created by: Tahir
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
In documentation and examples, its mentioned that Kendo UI Menu can be accessed on client using $("#menu").data("kendoMenu") , which doesn't work

it's actually $("#menu").kendoMenu().data("kendoMenu");
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.