Completed
Last Updated: 09 May 2016 16:46 by ADMIN
Implement Excel-like functionality of selecting a cell, selecting the bottom right corner and then dragging down to either copy the value (string) or increment (number).  This feature saves a lot of time and is the main reason we use custom Excel apps as database data entry tools.  Implementing this in Kendo would allow us to migrate to the web
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.
Completed
Last Updated: 09 May 2016 16:23 by ADMIN
Created by: Cory
Comments: 17
Category: Kendo UI for jQuery
Type: Feature Request
31
The Editor widget would be configurable to support (GitHub Flavored) Markdown syntax and would optionally display a live preview of the text.
Declined
Last Updated: 09 May 2016 11:26 by ADMIN
Steps to reproduce the bug

1) create a grid that uses “In Cell” editing and have a validation on a cell (in this example i will use a required field)
2) click in the required cell
3) click out of the required cell to cause the validation error to fire
4) click back into the cell which had the validation error
5) press escape 
6) click into a different cell and enter a value
7) click out of the cell 

This will cause the cell the be edited but it will not be marked as dirty!!!

The issue is that multiple submit handlers are getting assigned to the form I’ve updated the following to remove submit handlers after submit has been called.

I made a change to the telerik.grid.editing.min.js file to resolve the issue.  setting the submit handler to null after submitting the form seems to do the trick

_validateForm: function (n) {
            var o = this.form();
            if (o.length) {
                var p = o.validate();
                if (p) {
                    this.validate();
                    p.settings.submitHandler = function () {
                        n();
                        p.settings.submitHandler = a.noop
                    };
                    o.submit();

                    p.settings.submitHandler = null;
                }
            }
        },

Completed
Last Updated: 09 May 2016 11:26 by ADMIN
Created by: Thomas Weidman
Comments: 19
Category: Kendo UI for jQuery
Type: Feature Request
137
A gantt chart would be a nice addition to the too lset.
Completed
Last Updated: 09 May 2016 11:25 by ADMIN
Created by: Thomas
Comments: 49
Category: Kendo UI for jQuery
Type: Feature Request
409
| category 1  | category 2  |
|----------------|----------------|
| col 1 | col 2 | col 3 | col 4 |
Completed
Last Updated: 09 May 2016 11:25 by ADMIN
Created by: Zach
Comments: 14
Category: Kendo UI for jQuery
Type: Feature Request
61
Please provide a way to display multi-line labels in the chart controls such as the bar chart category axis.  The need is detailed in this post:
http://stackoverflow.com/questions/13247577/line-break-in-category-label-of-kendo-ui-chart
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());
        }
    }
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
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: 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.
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: 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
Completed
Last Updated: 23 Feb 2016 20:21 by Kohinoor
Created by: Gary
Comments: 9
Category: Kendo UI for jQuery
Type: Feature Request
15
Tooltips (especially in charts) get clipped. Need to ensure tooltip is posted in display area.
Declined
Last Updated: 23 Feb 2016 10:35 by ADMIN
Created by: T F
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I have a kentoTreeList with a custom footer in which I'm calculating my own footer numbers.  When I export the grid, I see the div tags embedded in my footer template.  Is there a way to export to excel once the footer template is populated?