Completed
Last Updated: 25 Jun 2015 08:53 by ADMIN
When creating a multilingual website I've realized, non-English unicode characters are not supported by the Grid's toolbar buttons. The toolbar won't be created and the Grid's setup cancelled. So, also no read function called or anything else.
Strangely it also killed the functionality of my Razor DropDownList for language selection despite no connection other than both using JavaScript.
Completed
Last Updated: 15 Mar 2021 15:57 by ADMIN
Created by: Paweł Kasztelan
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
105
I would suggest to enter the function menu script that is described in the following link. This is an interesting application that really makes it easy to navigate the menus user an.

http://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown
Declined
Last Updated: 20 Nov 2014 19:02 by ADMIN
Created by: Imported User
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
12
We would like to write a UI using Kendo UI Mobile and be able to still use it with mouse scrolling on desktop browsers like Firefox / IE etc.

This was also asked about here: http://www.kendoui.com/forums/mobile/general-discussions/mouse-wheel-scrolling-in-desktop-browser.aspx
Completed
Last Updated: 26 Sep 2017 16:14 by ADMIN
Created by: Shahar
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
51
Declined
Last Updated: 09 Nov 2016 00:18 by ADMIN
Created by: mgs
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
It is possible to add commands to the toolbar. However, if you only need one or two commands (such as an "add record" button), this means wasted vertical space.

So I appreciated if Kendo supported the creation of additional commands in the Pageable Bar.
Completed
Last Updated: 20 Nov 2014 19:01 by ADMIN
Created by: Vikentiy
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
15
In addition to basic Line and Area chart types, it would be great to add support for the Step Line and Step Area chart type.
Examples: 
http://www.infragistics.com/products/jquery/sample/chart/style-chart-with-themes (switch Series Type to Step Line and Step Area)
or http://www.highcharts.com/stock/demo/step-line
Completed
Last Updated: 27 Jul 2021 13:25 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
KendoUI "Getting Started" does not have well organized steps that first time users can follow through. It is made of fragments of somewhat related pages in no particular order, and even after going through them all (about five or six of them), you're still thinking how do I build my first application.

All framework and tool vendors provide step by step getting started guide to build a simple application (commonly hello world app). This usually addresses what to download, how to setup the project, which tools or IDE can be used, a simplest possible application structure to test out if the sdk and the development environment is setup correctly.

I do not see, no where, resembling something like this. Even the video sessions (about 30 of them) provided in YouTube does not provide getting started session.

Strange... considering all others are nicely done.
Declined
Last Updated: 19 Jul 2013 17:46 by ADMIN
Created by: Evan
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
I have an action list that is part of a view bound to a view model. The data-action attributes won't fire handlers that are part of the view model in the same way that a data-bind attribute does. I think that they should as the action list is part of the view.

One other suggestion it to make the description text box (the one I am typing in now) sizable and provide a mechanism for formatting code examples.
Declined
Last Updated: 12 Jun 2013 23:16 by ADMIN
Created by: Test
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Declined
Last Updated: 27 Feb 2015 21:26 by ADMIN
Created by: IKKI
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
When grid use popup edit, click cancel or close, the top row removed.
Completed
Last Updated: 02 Sep 2021 05:25 by ADMIN
Created by: Timothy
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
13
If the base css has something like the following:
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
This will break the layout of the kendo controls.

Adding the following override will fix it:
	[class^="k-"], [class*="k-"] {
		box-sizing: content-box;
		-webkit-box-sizing: content-box;
		-moz-box-sizing: content-box;
	}

This catches all elements that have classes with "k-" at the start and overrides the box-sizing back to default.

Consider adding this to the kendo css (either the wildcard version or to each k-* class).
Declined
Last Updated: 12 Jun 2013 23:33 by ADMIN
Created by: Sethuraman
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Hi,
Need color ranges for the Y-axis in the line chart.
This will enable the users to identify within which range the values falls with.
Declined
Last Updated: 10 May 2013 15:18 by ADMIN
Completed
Last Updated: 27 Feb 2015 21:31 by ADMIN
Created by: Timothy
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Try looking at http://docs.kendoui.com/api/web/treeview

There's both a method and an event named "select", picking the "select" event navigates to the "select" method instead.

Consider prefixing the #select anchor, e.g. #method-select and #event-select to avoid conflict.
Declined
Last Updated: 28 May 2013 22:36 by ADMIN
Created by: Mauro
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Allow actionsheet to be databound to a DataSource
Unplanned
Last Updated: 01 Jul 2021 14:31 by ADMIN
Created by: Andrew
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
22
The DataBound event is the last event that can be bound to at present (other than user interaction events) - this occurs before rendering. In the situation where a chart wrapper is in a hidden div to be displayed and the datasource to be re-read under certain circumstances, it would be useful to have a post render event to ensure the chart is fully drawn before displaying the div.
Declined
Last Updated: 27 Feb 2015 21:23 by ADMIN
Created by: IKKI
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
On this page: http://demos.kendoui.com/web/grid/column-menu.html
See the "Shipxxx" column.
IE can input contents and submit but the menu seems shake.
Other modern browsers can NOT input contents but the menu Not shake.
Please fix both! Thanks~
Declined
Last Updated: 20 Nov 2014 18:59 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
4
Allow parameters to be passed to Actionsheet callback functions.  I have a need for a varying number of Actionsheet actions based on data-driven settings.  I can dynamically populate the Actionsheet with jscript, but each action has to call a different callback function.  What I'd rather do is have each action call the same callback function and just pass an ID of the selected option to that function.  For example, I am using the ActionSheet to present the user with a list of places they can route the current record.  I don't need a different function for each place they can route it - just the ID of their selection.
Completed
Last Updated: 20 Nov 2014 18:59 by ADMIN
Created by: Justin
Comments: 11
Category: Kendo UI for jQuery
Type: Feature Request
43
Ability to have a hidden menu that slides in or pops in much like the other apps and frameworks have.
Unplanned
Last Updated: 27 Jul 2021 08:03 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
6
Allow adding shadow or colour gradient for the line in line charts