Completed
Last Updated: 20 Nov 2014 20:29 by ADMIN
Created by: Hadi
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
the scheduler options available now are limited, we cannot for example to define the occupied rooms vs days, horizontal axes are the days and list of rooms will be vertically instead of the hours, and also the data could be employees and to define the employees schedules for example, i think this will enrich your scheduler control.
Declined
Last Updated: 14 Jul 2014 12:54 by ADMIN
Columns that do not have a width setting become invisible when one or more columns are frozen.  Our grids have widths for all columns except one column which expands the amount necessary to fill all space in a grid when grid is set to 100% width of the page.  Once frozen columns are turned on, the main column then disappears until a width is added, then there is unused column space in the grid.
Declined
Last Updated: 20 Nov 2014 20:29 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Declined
Last Updated: 17 Jul 2014 15:17 by ADMIN
Created by: Juan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Lets say I invoke a view like /view.html?id=123

On the "show" event of "view" I pull the data from the server based on "id", and some loading and layout stuff.

On this "view" I have a button that navigates to another view that is a "picklist", or "settings" or "help". Upon going to this second view and then going back, then the "show" event of "view" is fired again, pulling data from server and re-running all that was inside the show event again.

On some situations it is important to conserve the visual state of the view after coming back to it. For example, if user is filling a form.

The same problem is faced when you want to implement a wizard (step by step) form: pressing back will wipe out all data and reload, loosing previous screen state.

There must be a way to prevent this. I have tried the e.view._back flag of the show(e) event, but it is not always reliable. By having such flag, all the scenarios mentioned can be handled by code, by knowing when it's a fresh-show or a back-show.
Completed
Last Updated: 01 Oct 2021 14:11 by ADMIN
Created by: Odin
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
14
I want to use typescript with the free core edition, but there is no definition file in the package.
Declined
Last Updated: 08 Jul 2014 08:43 by ADMIN
Created by: John
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be great if you guys updated the on-line help to reflect the namespace changes from Telerik to Kendo.
Completed
Last Updated: 14 Oct 2021 10:59 by ADMIN
Add advanced touched samples like drawing a line zooming a tab!
Completed
Last Updated: 03 Jan 2020 14:44 by ADMIN
Created by: Imported User
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
27
As of now there is no right click and double click events on diagram shapes, It will be useful if an event is raised on these particular actions. because these are the obvious actions on shapes
Completed
Last Updated: 23 Jan 2020 18:28 by ADMIN
Put the below html in http://trykendoui.telerik.com/
You will see that for year 2006 the noteText is not visible.
Same problem when the data point is at the top of the chart.
Should have some option to have some margin to accommodate this.
Or better yet change the position of the notetext to top or bottom automatically.

<!DOCTYPE html>
<html>
<head>
    <base href="http://demos.telerik.com/kendo-ui/line-charts/notes">
    <style>html { font-size: 12px; font-family: Arial, Helvetica, sans-serif; }</style>
    <title></title>
    <link href="http://cdn.kendostatic.com/2014.1.528/styles/kendo.common.min.css" rel="stylesheet" />
    <link href="http://cdn.kendostatic.com/2014.1.528/styles/kendo.default.min.css" rel="stylesheet" />
    <link href="http://cdn.kendostatic.com/2014.1.528/styles/kendo.dataviz.min.css" rel="stylesheet" />
    <link href="http://cdn.kendostatic.com/2014.1.528/styles/kendo.dataviz.default.min.css" rel="stylesheet" />
    <script src="http://cdn.kendostatic.com/2014.1.528/js/jquery.min.js"></script>
    <script src="http://cdn.kendostatic.com/2014.1.528/js/kendo.all.min.js"></script>
</head>
<body>
    <div id="example">
    <div class="demo-section k-content">
        <div id="chart"></div>
    </div>
    <script>
        var grandSlam = [{
            "year": "2003",
            "win": 13,
            "extremum": "MIN: 13",
            "loss": 3
        },{
            "year": "2004",
            "win": 22,
            "loss": 10,
          "extremum": "MIN: 1",
        },{
            "year": "2005",
            "win": 24,
            "loss": 2
        },{
            "year": "2006",
            "win": 30,
            "extremum": "MAX: 30",
            "loss": 1
        },{
            "year": "2007",
            "win": 26,
            "loss": 1
        },{
            "year": "2008",
            "win": 24,
            "loss": 3
        },{
            "year": "2009",
            "win": 26,
            "loss": 2
        },{
            "year": "2010",
            "win": 20,
            "loss": 3
        },{
            "year": "2011",
            "win": 20,
            "loss": 4
        },{
            "year": "2012",
            "win": 19,
            "loss": 3
        }];

        function createChart() {
            $("#chart").kendoChart({
                dataSource: {
                    data: grandSlam
                },
               plotArea: {
    background: "green",
                  margin: {
      bottom: 10,
                    top: 10
    },
                  padding: {
      top: 500
    }

  },
              
                title: {
                    text: "Roger Federer Grand Slam tournament performance"
                },
                legend: {
                    position: "bottom"
                },
                seriesDefaults: {
                    type: "line"
                },
              chartArea: {
                 border: {
      width: 5
    },
                 
    margin: {
      top: 100
    }
  },
                series: [{
                    field: "loss",
                    name: "Losses",
                  noteTextField: "extremum",
                    notes: {
                        label: {
                            position: "inside"
                        },
                          position: "bottom"
                    }
                }],
                valueAxis: {
                    line: {
                        visible: false
                    }
                },
                categoryAxis: {
                    field: "year",
                    majorGridLines: {
                        visible: false
                    }
                },
                tooltip: {
                    visible: true,
                    template: "#= series.name #: #= value #"
                }
            });
        }

        $(document).ready(createChart);
        $(document).bind("kendo:skinChange", createChart);
    </script>
</div>


</body>
</html>
Completed
Last Updated: 20 Jan 2023 15:10 by ADMIN
Created by: Imported User
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
19
I would like a control to accept durations in the format HH:MM, and persist as a number minutes (or maybe optionally fractional hours).  Something similar was suggested here (not by me):

http://www.telerik.com/forums/mobile-time-duration-picker

I have a time keeping application where user need to be able to enter summarize duration amounts on their timesheets, such as 8 hours of Holiday time (entered as "8:00").  It doesn't make sense to enter this as a time range.

We're accomplishing it now with a textbox, a masking library, and a bunch of fragile JS code, but I'd like a control that is natively build for this.
Declined
Last Updated: 30 Jun 2014 15:02 by ADMIN
In kendo.dataviz.ui.Chart, the legend.orientation is only used when the legend.position is set to "custom".  I want to be able to set the legend.orientation to "vertical" and the legend.position to "bottom", but if I do that, the chart ignores the orientation and uses the horizontal orientation.
Completed
Last Updated: 17 Aug 2016 14:22 by David
Created by: Dr.YSG
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
16
I recently started using bower (http://bower.io/) to manage my external packages (github) it makes update very easy. (leaflet, pouchdb, etc.) I see there is a bower package for the kendo core, but I am a longtime (since your first version) subscriber and I tend to use kendo.all.min.js.

Our projects are for offline use, so we cannot use internet urls for download of javascript.

Any chance of getting a bower package for Kendo Web? Mobile?
Declined
Last Updated: 22 Jan 2020 07:20 by ADMIN
Allow the navigator in the chart (http://trykendoui.telerik.com/iKux) to be configured so it can be positioned to move vertically as well as horizontally, this is useful when selecting ranges on the Y-Axis.
Completed
Last Updated: 25 Jun 2014 09:23 by ADMIN
Created by: Chatra
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Hi,

 I am looking for  array of Zip code masking like ['99999-9999', '99999'] to allow either 5 or 9 digits into Zip code text box.

 Something similar to 
 http://jsfiddle.net/8WvHE/


 Thanks,
 Chatrapathi chennam
Completed
Last Updated: 07 Jan 2016 17:27 by ADMIN
Created by: Mathieu
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
7
Use checkboxes besides the dynamically created items in the legend of the chart without defining a custom legend.

Please see the attached image here :
http://www.telerik.com/forums/can-i-use-checkbox-on-dashboard-tip
Completed
Last Updated: 20 Apr 2017 14:19 by Telerik Admin
Created by: Kjartan Valur
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
2
Provide Microsoft Word-like authoring and editing in KendoUI using a familiar interface for your end users.  
Must support importing and exporting files to and from DOCX format.

Similar to the Telerik Silverligth and  WPF control RadRichTextBox.
http://www.telerik.com/products/silverlight/richtextbox.aspx
Declined
Last Updated: 14 Oct 2021 10:58 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
I would like to see the ability to hide an entire series from appearing in the legend of a multi series donut chart without having to add a VisibleInLegend property to my data model and set the value for every item.  Doing this not only increases the amount of data being sent between client and server but it also adds information to the data model that ties it to particular chart types.
Completed
Last Updated: 20 Nov 2014 20:24 by ADMIN
Created by: Basem
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
18
Swipe ListView items for more action items, usually seen in native apps for swiping to delete.

See more capabilities with iOS8 demo for swiping left or right to show multiple action options: http://www.iclarified.com/images/news/41344/183731/183731-1280.png
Declined
Last Updated: 20 Nov 2014 20:24 by ADMIN
Created by: Madhav
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
I need some help to open print dialog using Telerik icenium Mobile Ui in iPhone, i want to open print dialog in my application this application has one html page which i want to print using AirPrint.

For that i am trying to import costume plugins by Apache cordova which is as per below link

https://github.com/katzer/cordova-plugin-printer

But i having trouble to import this plugin to VS 2013 with my project.

I hope favorable votes by every one, you will support this as fast as you can. 
Declined
Last Updated: 10 Jun 2014 09:28 by ADMIN
Created by: Romil
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I am using ASP.NET MVC and implemented Kendo Grid Inline Add/Edit/Delete functionality.

I am binding data source from server side first time. Then I do Add/Edit/Delete operation on client side in kendo grid data source property.

When I Edit any row which has been added temporary, then I do cancel click , the row is getting deleted automatically from the data source itself. 

The row should be persisted in the datasource. please let me know any solution for this issue.