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
Completed
Last Updated: 20 Nov 2014 18:39 by ADMIN
Created by: Don
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
It looks like .restore() doesn't return the window object as it should, breaking chaining.

Example:

- This works:
mywin.data('kendoWindow').title("hi").open().toFront().restore(); 

- This does not work.  It will throw "Cannot call method 'toFront' of undefined" in latest version of Chrome.
mywin.data('kendoWindow').title("hi").open().restore().toFront();
Completed
Last Updated: 20 Nov 2014 18:39 by ADMIN
Created by: John Thompson
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
18
Allow the developer to add various annotations to charts specifying position, alignment, color and font information.  Also, provide key information about the chart objects such as their position, center, etc..
Completed
Last Updated: 20 Nov 2014 18:39 by ADMIN
Created by: Danny
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
Hi,

One of the abilities of autocomplete is collect multiple selections of items.  This feature is seriously limited by only being able to see a single text line.

It would make a lot of sense to be able to use the autocomplete with a textarea so you can have multiple rows and a scrollbar

Danny
Declined
Last Updated: 24 May 2013 19:58 by ADMIN
When you click on a tab in a TabStrip, the expand animation shrinks the content area's height to zero, then expands it to the height of the new tab. This isn't bad, but gives a "bounce" effect to the control, which can be offputting (I've had complaints about it from users).

If would be nice if you could animate it from its current height directly to the new height, without shrinking to zero in between. That would be a much nicer effect.
Declined
Last Updated: 20 Nov 2014 18:39 by ADMIN
When you click on a tab in a TabStrip, the expand animation shrinks the content area's height to zero, then expands it to the height of the new tab. This isn't bad, but gives a "bounce" effect to the control, which can be offputting (I've had complaints about it from users).

If would be nice if you could animate it from its current height directly to the new height, without shrinking to zero in between. That would be a much nicer effect.
Unplanned
Last Updated: 02 Feb 2022 10:50 by ADMIN
Created by: John Farrar
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
8
You should contact me or another lead community expert on ColdFusion to add examples for that platform.
Completed
Last Updated: 27 Feb 2015 21:22 by ADMIN
Created by: Tony
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
160
I've been trying to use these great UI widgets in PHP update forms and the lack of documentation on how to use the datasource and widgets together in PHP forms is incredibly frustrating. Seems like it would be a very small job for one of the kendo gurus to come up with the following and add it to the examples and/or documentation:

Update forms:
In update forms you need to initialize the widget(dropdowns, comboboxes, etc...) with the value of the column in the database and provide the list of options to choose from to edit the data. I assume there is a way to do this using the datasource but there is zero documentation on this. Please provide a simple example with a standard php update form with the widgets pulling the form data from a simple query based on a selected id, just like every standard php form on the web, with clear code showing us how to configure the widgets so that they contain the data from the db when initialized and providing the list of options via the widgets dedicated datasource.

This is very simple stuff and should take one of your junior techs 10 minutes and would make some of us very happy.

Thanks!
Declined
Last Updated: 30 Sep 2021 05:18 by ADMIN
Created by: Altenor
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
It's a relieve that we can use $('#grid').kendoGrid('refresh') already. Thank you guys!

However, it still seems to be a problem when we need to get the instance of a created componente.

For example, if you need to access the grid's thead element, the only possible way is through $('#grid').data('kendoGrid').thead. If I try do this the natural way, (e.g. $('#grid').kendoGrid().thead), my grid is reinitialized. That's a pain.

The expected behavior for most experienced jQuery users is that if plugin is aready instantiated for a specific element, calling it's initializer method should return the instance, instead of creating it again.

Other than that you guys have been brilliant. Never saw anything even close. As I said my coworkers, if KendoUI was a girl, I'd totally marry her.

Keep up the good work =]
Completed
Last Updated: 09 May 2016 16:41 by ADMIN
Created by: Victor
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
15
LESS is a very good idea to use, makes Kendo styles much more readable! However, right now the LESS syntax used to generate styles (ThemeBuilder for example) use a non-official branch of LESS syntax. Unfortunately this makes LESS impossible to compile any other way than using the changed JS libraries and harder to integrate with other LESS in the project.

I suggest you either convince the LESS community that the changes are good and merge them into the official branch or consider the possibilities to use official LESS syntax.
Declined
Last Updated: 06 Jun 2013 18:07 by ADMIN
Position the grid's sorting icon on the left side of the column header so that it is always visible even when the column header's label is wider than the columns width. This will also eliminate the icon overlap of a narrow column that is sorted and also has the "columnMenu" option set to "true"