Completed
Last Updated: 11 Sep 2014 09:44 by ADMIN
Created by: Jay Stevens
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
The Kendo UI Forums have limited usefulness, do not seem to be consistently monitored for new questions, there isn't a useful tagging or categorization structure.  The search engine does a poor job of identifying similar questions / answers.  There is no easy way to link Questions together and/or mark duplicates.  The Forum site goes down from time to time, given the extremely limited documentation, this leaves developers without reliable information readily available.

All of these shortcomings (which are more than adequately addressed by Stack Overflow) result in a fractured support and documentation infrastructure for Kendo UI.  

Migrating all unpaid support away from the forums to Stackoverflow will dramatically improve the experience.
Declined
Last Updated: 17 Jan 2017 09:39 by ADMIN
Created by: Imported User
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
25
Add support for intellisense, auto-complete and syntax-highlighting to the editor. This enables the editor to be used for writing code or script. The intellisense and auto-complete rules should be customisable and support Ajax callbacks to populate.

Examples:
CodeMirror: http://codemirror.net
Brackets: https://github.com/adobe/brackets
Cloud9 Editor: http://ace.ajax.org
Completed
Last Updated: 09 May 2016 11:26 by ADMIN
Created by: Thomas Weidman
Comments: 19
Category: Kendo UI for jQuery
Type: Feature Request
137
A gantt chart would be a nice addition to the too lset.
Declined
Last Updated: 20 Nov 2014 18:31 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
Add a new feature to easily export/import current grid settings, such as the column size, page index, page size, column index, etc. This is useful for saving/restoring individual user's custom grid.

This can be added to other databound widgets, too, such as the ListView.

Based on this thread that I created: http://www.kendoui.com/forums/ui/grid/save-load-grid-settings.aspx
Completed
Last Updated: 16 Feb 2015 11:43 by ADMIN
Created by: Satish
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
13
It would be very helpful it there is an option to hide spin controls on numeric controls. Spin control are not really useful in all cases. Also setting readonly property for the control has no effect on the spin control you can still update the value by clicking the spinner. Currently in the forum a workaround was suggested using css (http://jsfiddle.net/krustev/uZUjK/). Implement this as a property for the numeric control
Declined
Last Updated: 18 Jun 2013 18:13 by ADMIN
Created by: Brian
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I have a grid column being bound to an object.  I would like to be able to filter this column on a sub-property of the object that it is bound to.  In my example I have an object called Division, and I would like to be able to filter on Division.Name.  Currently the filter controls all show up blank when used against an object-typed column.
Unplanned
Last Updated: 25 Mar 2024 11:29 by ADMIN
Please add the following things in Kendo UI
validators for compare, password length check, password complexity check, RangeValidator, ValidationSummary
Declined
Last Updated: 11 May 2012 20:07 by ADMIN
Created by: Ä m o l
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be very useful feature to Enable / Disable Panelbar Item
Declined
Last Updated: 11 May 2016 07:48 by ADMIN
Created by: RedTears75
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
would be great to have the option to set an image in a datagrids title, or alternatively be able to specify a title-template (like row-template but for headers)
Completed
Last Updated: 20 Nov 2014 18:31 by ADMIN
Created by: RedTears75
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
3
would be great to be able to set the datasource of a grid to xml (or mvc 4 data).
Declined
Last Updated: 11 May 2012 19:50 by ADMIN
Created by: RedTears75
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
it would be nice to be able to user-resize the columns with the mouse (like in jQuery-Grid Add-On).
Completed
Last Updated: 02 Mar 2021 16:40 by ADMIN
Created by: Nick
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
4
The ability to specify the width of the Ranges in a radial gauge would be beneficial to customize how the gauges can be displayed
Completed
Last Updated: 20 May 2024 14:55 by ADMIN
Created by: Simon
Comments: 9
Category: Kendo UI for jQuery
Type: Feature Request
67
Add a new Kendo UI component to display a record vertically (Or add an option to the existing grid to change the orientation of the records).

Usually, I was using vertical grid to display a single record but some people might need it to display more than one record (ex: when you compare items on best-buy web site)

The vertical grid could also be used as a property grid (http://www.telerik.com/products/silverlight/controls/propertygrid.aspx).
Declined
Last Updated: 20 Nov 2014 18:31 by ADMIN
Created by: Kevin
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
Hey,
I am not sure, if it is a bug, or if I am just wrong, but I tried this:

    $(".DatePicker").kendoDatePicker();
    $(".DatePicker").data("kendoDatePicker").enable(false);
    $(".NumericTextBox").kendoNumericTextBox();
    $(".NumericTextBox").data("kendoNumericTextBox").enable(false);

This works fine for all DatePickers, but on NumericTextBoxes it thows an exception ("object is null or undefined"). Using ids to enable/disable NumericTextBoxes works though.
Completed
Last Updated: 20 Nov 2014 18:32 by ADMIN
Created by: Dr.YSG
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
123
I like the Wpf/Silverlight version. But it should be possible in HTML also: Telerik has in the ASP.NET for Ajax a RadDock. Can we have something like this sort of MDI interface in Kendo
Declined
Last Updated: 27 Feb 2015 21:31 by ADMIN
Created by: Steven
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I find myself having to define fields and columns multiple times for use in grids and data sources.   It would be nice to be able to use a single structure that would work for both.   The visible setting would control if the field is displayed in the grid or not.   

For example:

    _myColumns = [
        { field: "Position.Name", title: "Position", width: 20, type: "string", editable: true, visible: false },
        { field: "Headcount.value", title: "Headcount", width: 15, type: "string", editable: true  },
        { field: "FTE.value", title: "FTE", width: 15, type: "string", editable: true  },
        { field: "EmployeeName.value", title: "EmployeeName", width: 50, type: "string", editable: true  },
        { field: "JobCode.value", title: "JobCode", width: 20, type: "string", editable: true  },
        { field: "JobTitle.value", title: "JobTitle", width: 100, type: "string", editable: true  }
    ]

then, this can be used in $().kendoGrid( { columns: mycolumns } ) and the data source $().kendo.data.DataSource( { fields: mycolumns } ). 
Completed
Last Updated: 27 Feb 2015 21:24 by ADMIN
Created by: Numan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
sparklines are important data visualization that is missing. would be great to have it. you can take inspiration from http://omnipotent.net/jquery.sparkline/#s-about
Completed
Last Updated: 20 Nov 2014 18:32 by ADMIN
Created by: Pierre
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
The possiblity to have a slider on graphs. We have a lot of data to graph and presently it just makes the columns or bar smaller trying to fit everything in the area allowed. if needed I can send an exemple to show what we would like to have. 
Completed
Last Updated: 09 May 2016 11:25 by ADMIN
Created by: Thomas
Comments: 49
Category: Kendo UI for jQuery
Type: Feature Request
409
| category 1  | category 2  |
|----------------|----------------|
| col 1 | col 2 | col 3 | col 4 |
Completed
Last Updated: 23 Jan 2020 12:48 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
11
How about a easy way to build reports like invoices, labels, etc?