Completed
Last Updated: 08 Aug 2016 14:24 by Telerik Admin
Created by: Murtaza
Comments: 17
Category: Kendo UI for jQuery
Type: Feature Request
110
Ability to take over the default sort and do a custom sort on the grid. This will be really helpful for formatted columns that requires a separate sort logic. 
Declined
Last Updated: 26 Jul 2016 13:50 by ArtB
Created by: kamesh
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
Please enhance 'Grid copy' feature on Kendo grid to copy column headers also to excel.
Completed
Last Updated: 18 Jul 2016 16:17 by ADMIN
Created by: Karl
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I would love to see the option for donut chart on pia charts. A nice example: http://www.highcharts.com/demo/pie-donut 

Thanks!
Completed
Last Updated: 05 Jul 2016 16:11 by Pascale
Created by: Matthias
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
1
After I filtered a column and deletes the filter content and press again the "Filter"-Button, nothing happens. Filter with empty string should clear the filter on the column,
Declined
Last Updated: 05 Jul 2016 07:57 by O
Created by: Imported User
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
1
ListView selectable feature could be done better. One thing has been bothering me. Here's an example: http://demos.telerik.com/kendo-ui/listview/selection Go to the last page and try to select outside of list items. Problem is that it isn't possible. Maybe Telerik has thought that user also has to be able to select text normally. But for instance in Windows Explorer you can begin selection anywhere inside the window and I think the user expects that behavior.
Declined
Last Updated: 16 Jun 2016 14:20 by WT
Created by: William
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Modal window does not currently work properly with MVVM. When visible = false, the modal area is still visible.
Completed
Last Updated: 11 May 2016 16:02 by ADMIN
Created by: Mike
Comments: 7
Category: Kendo UI for jQuery
Type: Feature Request
169
There are a couple of basic controls which I'm missing in Kendo UI WEB for example:
- Rating
- Carousel
- Progress Bar
- Image Cropper
- etc.

Please have a look at this non-commercial framework: http://www.alloyui.com
Completed
Last Updated: 11 May 2016 15:51 by ADMIN
Created by: Paul
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Listviews are great tools and the drag and drop feature works well. But it would be great to be able to reorder items in a listview
Declined
Last Updated: 11 May 2016 14:41 by ADMIN
I don't know what parameters the plugin sends to the server side.. in the grid for example there are parameters for pagination. I need to know how should I implement the PHP/Java code.
Declined
Last Updated: 11 May 2016 14:31 by ADMIN
This is still not fixed I did a detailed walk through of your code and found this:

Let me start by saying I am honestly trying to help. So unlike many of the other posts i have read I would rather you listen and not just tell me we are wrong... because what im saying is in both senerios below is out side of the programmer control, and the template your built is well not ready for them.

In short the template (though great it is) for the data-grid is deeply flawed and reliant on perfect data or it fails. I am of the general mind set that the templates should work for the most messed up senerior's, but taking that back a step they should work for simple ones also. 

I also reference line numbers in the keno.web.js file

I have mocked up this example based off of your example. 
Condensed json data call: (Not returning null values)  http://jsfiddle.net/3zhqx/1/ 

Resaults: Uncaught ReferenceError: age is not defined 

Pulling data from other locations where you cant controll the formatting of the incoming data json data call: (IE Web 2.0)
 http://jsfiddle.net/EyCZd/2/  No Error but the template does not pull the error.

http://jsfiddle.net/qqskQ/3/ 
Uncaught ReferenceError: Name is not defined  


Resolustion: (Many Options,but all have costs...)
21309: 
 rowTemplate = kendo.template(rowTemplate, settings);

This builds the row template:

21333-21395 Template builder.
In this you reference the data with a with clause and then fill those values from the data. True this is the most expedient but also the most fragile. It causes both of the error above.  It means that the system can not handle for columns that you cant control the naming of, or if the json data is missing a column or if the column is puposly missing to save space bacause its nulle.

Jquery ran into the smae issue and return null in the exsampel. http://api.jquery.com/template-tag-if/  read the big header at the top...

To fix this you can loop through the columsn try to ge the data and then build a html set acordingly. Personaly this may seam longer , but the computed total cyles would be less then the total computed cost fo the next one item. The last option is up for debate. 

The second option is to add to the current builder a way to check for undefined opjects... this is exceedingly difficult seeing as to how tightly coupled and fagle that particular line of code is. 

This is how they handled for it in another template in your code:
10675  { data.title || ""} insted of with(data)...... e(title)

I tried to manually do this, but i have only been a java programmer for two months and lack all the verbiage needed to write the code well... that and it was 3 in the morning. 

The third option is what i had to do out side of the control, but its an unneeded mess fix that makes me pass a 1/3 more data to handle for this. Almost a deal breaker for me.

I had to fix all incomimng feed and gerate a fixed column name and colection, and I had to make sure all my jason and my feed have every  row  have every column.... when dealing with massive data sets that sucks both on bandwidth and cpu. and column in the. That is why i went mvvm in the first place to deffer costs...

So back to the fix you could when binding the data... I think 4601 or there about... check to make sure each line has every row and fit it in as null if it does not. the reason this may be the fastes is because your already looping through all the data on every call and sooooo you can add in at 4723 I think.... that would allow you to add in a null object with the correct name into the data.

I think the last one is the right idea but i ren out of time to trouble shoot the issue nay more.

The use case is this: 
User is either pulling data from a myriad of sources and union the data so the rows may not always match, but thats ok because its web 2.0... say netflix and blockbuster feeds... bad example you can shoot it down but the need is there.

user is managing lots of data and needs to save bandwidth and cpu by processing less data. (got to love and hate the cloud.) so he can not always send null filed in json.

User is geting data from a source that is not known or well defined, and needs to pass it right to the client... for whatever reason..  or user is getting dynamic columns from data and may not know what the columns are or how well they are formatted...


Hope this helps.

Sorry for the spelling im busy got to run.

Other posts on same issue:
http://www.kendoui.com/forums/ui/grid/grid-with-template-error-uncaught-referenceerror-sum-is-not-define.aspx#2232854
Completed
Last Updated: 11 May 2016 14:17 by ADMIN
[a] On paste
    [1] If pasted text contain email/url then convert it into link.

[b] On typing using keyboard in editor 
    [1] If Email is typed in editor then convert it into email link (href should contain mailto: attribute).
          for example if you type abc@pqr.com then its link should be like (<a href="mailto:abc@pqr.com">abc@pqr.com</a>).
    [2] If URL is typed in editor then convert it into URL link.
Completed
Last Updated: 11 May 2016 13:37 by ADMIN
Created by: Stacey
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
3
The "Drag and Drop" system in Kendo is pretty good, but it has the distinct characteristic of being pretty much DOM only; It won't really "bind" to underlying data.

This would be an extremely useful feature - the "suggested fix" for this right now is to use the kendo ListView and do a search for GUID on the events firing, and while this isn't really "bad", it's pretty cumbersome and kind of obtuse most of the time.

I have spent extensive time looking at the source code for Drag and Drop, and it would not be very difficult to give it a newly exposed set of functions. 

The primary use for drag and drop is to move information from one place to another; I do not see a lot of situations where all of the information someone wants to move is just right there in the DOM. Every situation I see of Drag and Drop that people want to use involves moving DATA from one place to another, and the Drag and Drop on the DOM merely facilitates the actions in place of more cumbersome features like drop down lists.

I realize this isn't the easiest of tasks to do, but as it is right now, the Drag and Drop part of Kendo is more of an eyecatch than a feature I see used a lot. 
Declined
Last Updated: 11 May 2016 13:32 by ADMIN
Created by: Bujji
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Kendo grid has default filter option .How can i integrate the grid with filtered value in chart
Declined
Last Updated: 11 May 2016 12:54 by ADMIN
Created by: Graham
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
3
Completed
Last Updated: 11 May 2016 12:34 by ADMIN
Created by: Oskar
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
7
1. Select all button
2. Remember selected items (now they are gone if we change page / scroll in virtual scrolling mode on)
3. Selected items count displayed on bottom bar (for example put it as neighbor of paging list)
4. Copy content of selected rows in grid (ctrl+c when selected) [data split with semicolons]
5. Export Selected/Filtered data into CVS file
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: 11 May 2016 09:24 by ADMIN
put the version number on your release notes.... "Come on man"
Completed
Last Updated: 11 May 2016 09:12 by ADMIN
Created by: Jhonny
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Add documentation for each significant versions. I should not need to always update to latest Kendo UI each time I need to fix or improve something on already shipped app. I know most things are backward compatible, but keep in mind that not every time we can afford the time to update it.
Declined
Last Updated: 11 May 2016 08:59 by ADMIN
Created by: Hong
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Right now only words can be indented, but not Table, the format does not look tidy enough
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