Declined
Last Updated: 19 Jan 2015 17:38 by ADMIN
http://docs.telerik.com/kendo-ui/api/jsp/rangeslider
http://docs.telerik.com/kendo-ui/api/jsp/slider

under the "tickPlacement" section

says:

The available options are:

It needs to be:

The available options are: both, ...

and list the other options.

I found "both" being used here:

http://demos.telerik.com/kendo-ui/slider/right-to-left-support

but I don't know what else I could used for other effects
Declined
Last Updated: 14 Jan 2015 18:45 by Telerik Admin
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Hi,

When using Kendo in our team's solution, we parse all of the kendo files to build our own dependency tree. While trying to recently integrate excel export for grids, I noticed two issues with dependencies:

kendo.excel.js references kendo.data.TreeListDataSource, but does not require kendo.treelist, so we get an undefined exception.

Export requires jszip, but jszip is not mentioned as a dependency in any of the kendo files. Can we get those added?

Thanks!
Declined
Last Updated: 17 Mar 2016 12:54 by ADMIN
Created by: Milan
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
5
Please support Internet Explorer 8 when using Kendo-Angular by supporting Angular 1.2.* branch as well.
Declined
Last Updated: 22 Jun 2015 14:03 by ADMIN
Created by: Vasim
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
3
Can we have an option where the TabStrip tabs overflow to a dropdown just like the ToolBar items overflow when re-sized instead of wrapping tab items to another line

This would work great on small factor tablets/phones
Declined
Last Updated: 07 Jan 2015 18:24 by John
<pre>
Change typos in document:

http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#configuration-columns.filterable.cell.suggestionOperator


from:

"startswidth"
"startswidht" 

to:  

"startswith"

</pre>
Declined
Last Updated: 07 Jan 2015 09:33 by ADMIN
Created by: Jiajia
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
When I used the angularjs to bind template data to kendo-mobile-scroll-view, it will post error when scroll to the last page, it post error as Uncaught TypeError: undefined has no properties, I think there is an error existed, could you fix it? If it is not, or you could give a more clear example on demo part?
Declined
Last Updated: 06 Jan 2015 17:37 by ADMIN
MultiSelect field to be able to be inputted manually, if look up is not available
Declined
Last Updated: 07 Jan 2015 10:08 by ADMIN
Created by: David
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
kendo.diagram.Path is an object that can be appended to a kendo.diagram.Group object and supports such things as SVG paths.  This is undocumented and unsupported functionality that can be accessed in pure JS but is inaccessible in TypeScript.  Can you please support this object and add its declaration the d.ts file?
Declined
Last Updated: 11 Mar 2021 15:30 by ADMIN
Created by: Yong Yong
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
1
Kendo Map - Auto-Center after loading the geojson file.
Declined
Last Updated: 21 Sep 2021 11:30 by ADMIN
Created by: Weston
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
7
Kendo has places where you can specify cssSpriteClass, and other places where you can specify the actual icon by name. 

My proposal is to provide a way to say I am using halflings or font awesome or anything else for that matter, and just specify icon "fa fa-play" and its done.

Currently its way too much work to implement kicon wrappers for font awesome fonts, and then they dont work everywhere anyway.
Declined
Last Updated: 22 Jan 2020 07:32 by ADMIN
Created by: John
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
The grid and chart can be used in mobile apps and seem to work properly.  (See http://kendoui-feedback.telerik.com/forums/127393-telerik-kendo-ui-feedback/suggestions/4522456-touch-grid-for-tablets-that-has-as-many-features-a for the suggestion that they do work).

However, they don't adapt to the mobile appearance like the dedicated mobile widgets, which makes them hard to use in cross-platform mobile applications.
Declined
Last Updated: 22 Jul 2021 11:27 by ADMIN
Created by: Fillip
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
I was wondering if there's a way to validate a form that has inputs with identical names. The following JS Fiddle is an example of identical names:

http://jsfiddle.net/fmpeyton/5c9d2p0c/

I would hope there would be a way to handle this, since lots of backend languages have the ability to accept identical name attributes, as they concatenate the values or convert them into an array or collection (ASP.NET).
Declined
Last Updated: 03 Mar 2020 14:38 by ADMIN
Created by: Kenneth
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
I love your controls except Validator. I have finally made my own, where I can write multiple functions to evaluate each input just like this in typeScript:
new Helpers.Validate([
                { name: 'postId', test: [(e) => { if (e == "") return "Chose a post."; }] },
                { name: 'creditor, test: [(e) => { if (e == "") return "Chose a creditor"; }, ] },
                { name: 'description', test: [
                    (e) => { if (e == "") return "Make a description"; },
                    (e) => { if (e.length < 15) return "Your description are to short "; },
                ]
                }, ]);
It is now a pleasure to make forms and perhaps you will consider to reevaluate the structure of your Validator that I have been struggling with workarounds on for so many hours the last two years. 
Kind regards from Kenneth
Declined
Last Updated: 25 Nov 2014 10:34 by ADMIN
I think the treeview is not as good as possible. It can not refresh one of the node alone.
Declined
Last Updated: 24 Nov 2014 15:58 by ADMIN
Created by: deepak
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I am facing a problem in the Kendo grid, I want to apply default filter criteria on the data source. To achieve this functionality, I am filling the filtered data on the first initialization of the data source and then adding the filter criteria on the JavaScript side by using the code.
       masterFilters.filters.push(eventTypeFilters);
        masterFilters.filters.push(roleTypeFilters);   
      dateviewGrid.dataSource.filter(masterFilters);   

But due to this, Http request of the AJAX call is being repeated on the code statement dateviewGrid.dataSource.filter(masterFilters);   

To resolve this problem, I have tried following options,

1) I have returned the zero records at the time of initialization of the data source, but it is giving another hit on the virtualization method.
2) But when I am returning at least one row at the time of initialization of the data source, 
It is not throwing extra hit on the virtualization method.
It is showing strange behaviour. Is there any bug in the Kendo grid?.
Please suggest a right approach to achieve this functionality,
If you want some more clarification on this problem, let me know.





 

    
Declined
Last Updated: 20 Nov 2014 16:23 by ADMIN
Created by: Stephen
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
In Chrome, you can type into the Editor's fontName tool to select a font. In IE, however, you can't type in a font, but rather can only select one using the dropdown. It would be good to be able to give the user a consistent experience across browsers. Ideally that would mean allowing them to type in a font in IE, but if that is not possible it would be good to be able to configure/turn off the ability to type in the control in Chrome and other browsers.
Declined
Last Updated: 20 Nov 2014 11:58 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
Inserting a new table in the editor in IE ignores the current cursor position and adds the table as the first element. If you add a new table, this will be added in the first cell of the first table.
Declined
Last Updated: 20 Nov 2014 10:43 by ADMIN
Created by: Stephen
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
The .value() function on the Editor control strips out some elements from the Editor HTML. For instance, tables created in the Editor have a BR tag inside the table cells, but those BR tags are removed from the string returned by .value().

In order to display HTML exactly the same as it appears in the Editor, it would be useful to have an additional function, perhaps call it .rawValue(), that does not strip out these elements. For instance, with the BR example, if a row does not have any content the row will collapse without the BRs, so it would be nice to have an additional function that leaves them in.
Declined
Last Updated: 08 Mar 2017 14:02 by Telerik Admin
Created by: Desu
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
If Kendo tooltip configured closeToHide: true, then the kendo tooltip only hide when the close (x) icon clicked. The tooltip will still appear if user scroll mouse or click at another area on browser.


Currently kendo tooltip will be hide when user scroll mouse or click at another area on browser even if it was already configured autoHide: false