Completed
Last Updated: 11 May 2016 07:52 by ADMIN
Created by: Yvan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be nice to have a "Show all" option on the grid, allowing to display all items on it
Completed
Last Updated: 07 Mar 2014 14:48 by ADMIN
The select event of the DropDownList passes an event argument e. One of the members of said argument is e.item.

Contrary to what every sane developer expects, e.item is *not* the dataItem of the datasource bound to the DropDownList, but the DOM element that represents the item visually.

The way to get to the data item is *undocumented*. Here's the necessary code:

domElem.kendoDropDownList({
    
    /*  ...  */

    select: function(e){
        var dataItem = e.sender.dataItem(e.item.index());
        // ARE YOU KIDDING ME?
    }
});


Please, PLEASE, pass the data item in the event argument.

I can't think of any case in which i would prefer the DOM element in the select handler over the data item.
Completed
Last Updated: 20 Nov 2014 20:06 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It's March 5th.  When is that Q1 release (or Beta) with the frozen / locked column feature going to be available?
Declined
Last Updated: 22 Jan 2020 07:33 by ADMIN
Hi, 
In kendo Line chart, currently the plot area can be colored using plotBands. 
In line with that is the requirement to color different ranges with different colors in the y-Axis line alone.
The line size can be made to 3 or 5 px to shown the color clearly.
This will help the user 
1. to understand the criticality of the different ranges.
2. Mostly line charts will be shown shown in reports, and will be given as printouts to the patients (in case of hospitals),  a report will have multiple line charts components, providing this feature will help the customers to reduce the cost on printer color catridges (that will be used when printing the whole plotbands for different ranges).

Thanks.

Completed
Last Updated: 14 Mar 2014 16:03 by ADMIN
Created by: Curtis
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Add a "Trackball" feature in the chart for ASP.NET MVC UI (aka Kendo UI DataViz with MVC Wrappers) as described in the blogpost: http://blogs.telerik.com/iosteam/posts/14-03-04/trackball-and-annotations-for-chart-for-ios.-check.-demo-app-on-the-appstore.-check-
Declined
Last Updated: 14 Mar 2014 17:25 by ADMIN
Created by: Alexander
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently, the grid select method operates on the whole page which can easily be an issue if there is more than one HTML table.

Eg: $('#myGrid').data('kendoGrid').select('tr') should only select all rows but actually applies the 'k-state-selected' class to all <tr> elements on the page.

In cases such as $('#myGrid').data('kendoGrid').select('tr:eq(0)') may not select a row in your grid at all since it selects the first row anywhere on the.

Since I've already specified my grid by ID, I would expect the chain of functions to respect that.

Two possible workarounds are:
1. 
$('#myGrid').data('kendoGrid').select('#myGrid tr').
2. 
var grid = $("#myGrid").data("kendoGrid");
var row = grid.tbody.find("tr:eq(0)");
grid.select(row);
Completed
Last Updated: 21 Mar 2014 15:46 by Stephen
Created by: Stephen
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be great if the Menu control could be auto-collapsed to fit a specified with.  If you've got more menu items than the width of your page can fit, it would be nice if the end menu items (or even menu items specified with a flag) would collapse to one nested menu item.  This should be dynamic as well.  Here is my specific example:

I've got my menu setup with controller actions attached.  Based on system permissions only the menu items the logged in user has access to will show up on the menu.  This works fine.  

A couple of the roles though have access to everything and when the menu shows all of the possible items, the menu wraps to 3 lines since it is wider than the width of my layout.  What I need is a way to auto-collapse the menu items at the end of the menu (down to one nested menu item) in the cases where it would wrap past 1 line.
Completed
Last Updated: 21 Mar 2014 13:30 by ADMIN
Created by: Pierre
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
VS extensions for  mvc 5.1+ soon!
Completed
Last Updated: 21 Mar 2014 17:49 by ADMIN
Created by: Pierre
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
On Kendo UI Demos, remember my settings (e.g.asp.net razor)
http://demos.telerik.com/kendo-ui/web/notification/index.html
if I view an example in its  Asp.net MVC razor incarnation for example, the site should remember these settings for my next example viewing.
Better yet, when I click on "Documentation", I should be taken to documentation in its Asp.net MVC razor  format!!
Declined
Last Updated: 26 Mar 2014 08:30 by ADMIN
Created by: md
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
DropDown show problem when click on DropeDown.
Completed
Last Updated: 04 Apr 2014 15:25 by ADMIN
Add support to the AutoComplete widget for binding ID of selected item to the value of the record being edited.  At the you can only bind the text-field.  This is useless for related records.
It's not good for much if you can't bind the id of the selected record, like in the Combo.
It should also have an option to only allow matching records.  So if the user types something that doesn't match it won't bind... and validation can pick up a null value that way....
Declined
Last Updated: 04 Apr 2014 15:06 by ADMIN
Created by: Dean
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Just like the NumericTextBox in Kendo Web, but for Mobile!
Declined
Last Updated: 03 Feb 2022 07:16 by ADMIN
Created by: Andrew
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
An option to trigger swipe on touchend, and support for cooperative drag and swipe events.
Completed
Last Updated: 18 Apr 2014 12:44 by ADMIN
Created by: Fernando
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Hello

I'm using ClientGroupHeaderTemplate and dynamic grouping but the aggregation isn't working the way I need it to.

For example: 
	If I set a column "RandomValue" with a aggregation(sum, count etc), bound it with ClientGroupHeaderTemplate and group another column, the aggregation value is not displayed, but if I group the column "RandomValue" then the aggregation value is displayed but that is not useful to me
	If I bound "RandomValue" with a ClientFooterTemplate or ClientGroupFooterTemplate and group another column, the value is displayed

	I need to bound a column with ClientGroupHeaderTemplate  and the value should be displayed for whichever column I group, just like it happens with ClientGroupFooterTemplate and ClientFooterTemplate

        It'd be useful if the aggregation value could be displayed right under the column name

      My suggestion is that the ClientGroupHeaderTemplate could have the same features as the other templates like I described

Declined
Last Updated: 22 Apr 2014 11:54 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Norwich vs Liverpool Live Stream
http://feedback.storify.com/forums/66927-general/suggestions/5803592-norwich-vs-liverpool-live-stream
Liverpool vs Norwich Live Stream
http://feedback.rackspace.com/forums/71021-product-feedback/suggestions/5803603-liverpool-vs-norwich-live-stream
Declined
Last Updated: 22 Apr 2014 11:52 by ADMIN
Created by: Remigijus
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Scheduler in Day view, horizontally grouped by Resource. 
Some events have time, some events are "all day" events. I need to able to drag event from All day slot to make them "timed" events and back.
Declined
Last Updated: 25 Apr 2014 16:04 by ADMIN
Created by: Jason
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I understand that many of the controls would require styling automatically. I would like options added to controls to disable the styling if possible.  For example: MaskedTextbox, let me pass in.

{
styling: none
}

as an option on create, and we get a normal, un-styled text box
Declined
Last Updated: 25 Apr 2014 14:50 by ADMIN
Created by: PadillaCRT
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be nice to have a PanelBar or something similar for mobile and tablet devices.  We've tried, but haven't successfully been able to use the current PanelBar without running into bugs and other issues.
Completed
Last Updated: 11 May 2016 09:50 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Documentation on charts is very hard to navigate and search with too little examples.
Completed
Last Updated: 07 May 2014 09:01 by ADMIN
If you look around lots of people actual and potential telerik customers are looking for this kendo-breeze real integration.
Telerik will loose ground persisting on the ignorance of this.
BTW my name is Luis Antunes, as I can see i'n still logged in as anonymous