Under Review
Last Updated: 16 Sep 2021 11:24 by ADMIN
Created by: Stacey
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
5
Right now, the kendo-ui docs are a bit difficult to get to and navigate. They're inherently clear as to where they are, being nested 3 clicks beyond ["SUPPORT AND LEARNING"] in the top menu.

just to illustrate this, I made a video of how you get to the docs from a cold search of kendo ui. It takes way too many page steps just to get to the docs. 

[VIDEO LINK]
https://www.dropbox.com/s/d0osh6imco5fq08/2016-05-05-2016-01.mp4?dl=0


Once you're there, it's not a bad experience - but still, I think there really ought to be a simple ["DOCUMENTATION]" menu item that is verbose and clear, since "[SUPPORT AND LEARNING]" sounds more like links to classes, tutorials, etc.
Duplicated
Last Updated: 08 Mar 2022 09:15 by ADMIN
Created by: Murali
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
We need legend in kendo map for our requirement.
Declined
Last Updated: 20 Aug 2021 08:47 by ADMIN
Created by: Byang
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
Chart series labels template to include html elements. At the moment, adding HTML elements in a chart series label template is possible but you cannot do anything on those elements. Would be nice to be able to re-template the labels by adding HTML elements in them and be able to design these elements or attach events to these elements.
Completed
Last Updated: 25 Nov 2021 12:23 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
How about showing a list of tables or views available to End user so that End user can Query on those and get his expected output as a result or Report
Unplanned
Last Updated: 24 Jun 2021 11:23 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
The style picker has to be manually populated with style names. It would be better if it could pull the style names out of the associated stylesheet and filter the list depending on the location of the cursor i.e. only show styles applicable to ‘a’ tags when a hyperlink is highlighted.
Unplanned
Last Updated: 02 Mar 2021 15:37 by ADMIN
Created by: Surinder
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
9
Dear All,

There should be one simple calculator attached to numeric text box, it can be opened or closed using F4 and after calculating result should be copied to text box.

Thanks

Regards 
Surinder
Declined
Last Updated: 25 Apr 2016 15:41 by ADMIN
Created by: Emrah
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Hello,
I try datetimepickerfor control on a mvc project, I set min and max values for it, when I change time, it validates for min, max values and changes automatically but not for date, so I had to write script below. 
Regards.

function dateChange(){
        if (this.value() < this.min()) {
            this.value(this.min());
        }
        else if (this.value() > this.max()) {
            this.value(this.max());
        }
    }
Completed
Last Updated: 04 Aug 2021 07:30 by ADMIN
The current implementation makes it too difficult to use a 3rd party icon font instead of the built in kendo sprites. I shouldn't have to specify the spriteCssClass and then add extra CSS or jQuery or both to handle position and sizing glitches. I also shouldn't be forced to use an entirely custom template just because I want to use an icon font.
Completed
Last Updated: 15 Apr 2016 13:49 by ADMIN
Can we have a way to implement the  org chart functionality (present in Rad Controls for ASP.NET) in MVC using Kendo
Completed
Last Updated: 13 Apr 2016 09:43 by ADMIN
Created by: Stephan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
In order to visualize process workflow items and their sequence, a new Kendo UI control would be a big step forward. I was getting inspired by SAPUI5 control "process flow". Here the link:
https://sapui5.netweaver.ondemand.com/explored.html#/sample/sap.suite.ui.commons.sample.ProcessFlowConnectionLabels/preview

This UI is able to be used in different situations:
1. Visual display of workflow steps
2. Display of relations between business work items:
connections and their frequency of usages between business workflow items .

The UI should be able to define workflow items and their connection.
It should also be possible to define templates for connection types and process item types.
Declined
Last Updated: 02 Mar 2021 15:51 by ADMIN
there should be a way to connect 'kendoDraggable' and 'kendoSortable'
like the jquery ui example here: http://jqueryui.com/draggable/#sortable
Declined
Last Updated: 25 Apr 2016 09:03 by ADMIN
Created by: Surinder
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
1
Dear All,  

There should be a provision to enter numeric equations like

=15.75.90*24/100

and on hitting enter it should calculate result and fill in text box being edited.

Also there should be one calculator attached to numeric text box, can be opened or closed using F4 and after calculating result should be copied to text box.

Thanks

Regards
Surinder
Declined
Last Updated: 06 Apr 2016 09:13 by ADMIN
Created by: Surinder
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I am looking for a way to design a data entry form inside kendoui window. which has three divs
div 1 has toolbar
div 2 has data entry controls
div 3 has sttus bar

div 1 should be stuck to top of window
div 3 should be stuck to bottom of window
div 2 should have a scroll bar if its contents cant fit in its height

contents should not scroll at window level, but at div 2 level only.

Thanks
Declined
Last Updated: 06 Apr 2016 09:12 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
1
The disabled range sliders still have cursor:pointer. You need to add
.k-state-disabled .k-tick,
.k-state-disabled .k-slider-selection,
...
{
    cursor: default!important;
    outline: 0
}
Declined
Last Updated: 28 Mar 2016 16:35 by ADMIN
I take many times for one issue.How can i refresh ImageBrowser manually?i try this one already

var editor = $("#editor").data("kendoEditor");
editor.bind("execute", function(e) {
   if (e.name == "insertimage") {
       
// necessary because event is fired before window show

       setTimeout(function() {
           var imagebrowser = $("[data-role=imagebrowser]").data("kendoImageBrowser");
           imagebrowser.upload.bind("upload", function() {
               imagebrowser.dataSource.read();
           });
       });
   }
});
But Thumbnail Image never fires again so image never change.
Completed
Last Updated: 12 Sep 2023 14:21 by ADMIN
Created by: Adrian
Comments: 21
Category: Kendo UI for jQuery
Type: Feature Request
25
CSP is a great security feature. It should be fully supported by Kendo! The best would be some way to precompile Kendo Templates. Second option could be that you can use Kendo + CSP when not using own Kendo Templates at all. 
Unplanned
Last Updated: 12 Jul 2021 17:39 by David
Created by: Brian
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
20
Declined
Last Updated: 11 Mar 2016 09:11 by ADMIN
Created by: Vennila
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently if I choose specific options in editor in iPhone 5 and 6 e.g. bold, italic and underline. It retains the style for first line only. As soon as I hit enter all the selected style is gone. If editor is retaining the style in multi lines in other browsers then it should also retain in iPhone as well
Completed
Last Updated: 10 Mar 2016 10:06 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I am using Kendo diagram for Workflow wizard. right now i am using my custom icons for Workflow shapes. I also want to use icon/image for connection lines between 2 shapes. Please provide this feature.
Declined
Last Updated: 07 Mar 2016 13:56 by ADMIN
Created by: Loga
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1