Completed
Last Updated: 03 Jun 2015 12:08 by ADMIN
Duplicated
Last Updated: 03 Mar 2020 09:49 by ADMIN
Created by: Jonathan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
11
http://www.telerik.com/help/silverlight/radexpressioneditor-overview.html
Completed
Last Updated: 20 Nov 2014 18:40 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
25
With the Silverlight controls, one can make the charts scrollable. This is a great feature for adding tons of data without making the bars in a chart so small you can't click on them, and would make an excellent addition to an already great product.
Completed
Last Updated: 20 Nov 2014 18:40 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
18
I'd really appreciate some kind of action bar on Android devices. For now the android theme is mostly just black and white and not really appealing (the navigaion and title).
Furthermore Navigation would be much more intuitive when using the new 4.1 ActionBar with back(icon) and view-title. 
A little makeover of the buttons would also be nice ;)
http://developer.android.com/design/patterns/pure-android.html
Declined
Last Updated: 05 Jun 2013 22:33 by ADMIN
Created by: Jim
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
We have built some really cool stuff with Kendo UI Mobile.  We want to present or Apps on regular web pages with non-HTML5 browsers.  Maybe in an IFRAME like Facebook.  We need graceful degradation functionality.  Any interest?
Declined
Last Updated: 22 Jan 2020 07:25 by ADMIN
Created by: Cody
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Wouldn't it be nice to be able to filter a field as a property of a series? You could populate stacked and grouped column charts with a single datasource, without having to parse through it manually with js.
Declined
Last Updated: 07 Jun 2013 19:14 by ADMIN
Created by: Danny
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
The possibility to have both edit modes in a grid. I want to (for example) instant edit my columns in the grid, but also have a (custom) popup window wich will allow me to edit more fields not included in the grid (but still in the datasource ofcourse).
Declined
Last Updated: 27 Feb 2015 21:29 by ADMIN
Created by: Dan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
This causes Kendo grid's javascript dataItem method to fail since it is trying to access a blank array.  The wrapper is useless to me without this.
Declined
Last Updated: 27 Feb 2015 21:23 by ADMIN
Adobe AIR imposes some security restrictions on Javascript code written in certain ways/styles (e.g., use of "eval" and "Function" declaration inside code, which are used in KendoUI), but offers a fairly complex implementation facility (called the "sandbox bridge") so developers can work around these security restrictions... Please provide Adobe AIR/Javascript developers "BEST PRACTICES" articles/tutorials on how to code the KendoUI widgets that are incompatible with the Adobe AIR security restrictions.
Declined
Last Updated: 23 Sep 2021 10:56 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Kendo UI is great but it does not work with the integrated webkit in Qt.
Completed
Last Updated: 06 Oct 2015 14:07 by ADMIN
Created by: Kevin
Comments: 16
Category: Kendo UI for jQuery
Type: Feature Request
92
This would be great. It is kind of what I had in mind when I suggested this: http://kendo.uservoice.com/forums/127393-kendo-ui-feedback/suggestions/2662536-add-grid-column-filters. I currently use this type of filter where the filter is just a free text field and upon blur or enter, it runs the filter. having control over the type of filter syntax used would be great ... so that it is Linq, List, Oql, or custom string compatible. This is a common feature in the Telerik Grid when used in client mode...
Completed
Last Updated: 27 Feb 2015 21:25 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Please add a close event to the ActionSheet.  This could be used in conjunction with the open event to allow the user to use the back button on Android to close the ActionSheet.
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
Unplanned
Last Updated: 08 Jul 2021 09:40 by ADMIN
Created by: Alex
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
8
Unit tests are usually a part of the complete solution. If I pay for the code, I'd like to be able to make minor changes and verify they work.
Declined
Last Updated: 08 Feb 2022 07:18 by ADMIN
Add ability to have graph "scroll" like a stock ticker. This would allow for the graph to dipslay large X axis values while still contained smaller graph area.  This woudl also help with displaying dataviz on mobile applications as it would give virtual space to the smaller devices.
Completed
Last Updated: 09 Nov 2012 09:21 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
kendoui grid batch editing not working with jquery 1.8.0
Completed
Last Updated: 20 Nov 2014 18:39 by ADMIN
Created by: Nuno
Comments: 10
Category: Kendo UI for jQuery
Type: Feature Request
35
It would be nice to use the Kendo UI Editor to manipulate and style tables, add/remove rows and columns, just like MS Word does.
Together with some friends we discuss this issue and we saw that it is a very important and useful feature for the most end-users, because they are comfortable working with MS Word and they notice that fault when using web applications.
Declined
Last Updated: 07 Jun 2013 19:33 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Similar to http://demos.devexpress.com/ASPxEditorsDemos/ASPxDropDownEdit/DropDownEdit.aspx
Completed
Last Updated: 01 Apr 2020 09:10 by ADMIN
Current when using the HierarchicalDataSource you can only load one level of data at a time. I would like to be able to pre-populate the entire tree (but have the ability to refresh it via remote data, should I so need).
Completed
Last Updated: 27 Feb 2015 21:26 by ADMIN
Created by: Ilja
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2