Unplanned
Last Updated: 31 Jan 2020 08:31 by ADMIN
Created by: Maciej
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

Changing order of columns by dragging by column header is cool (and should stay), but this scenario is inefficient for large number of columns (more than 10-20).

I suggest to add drag&drop feature to Grid/TreeList column menu (where i can show and hide columns already) to change order of columns.

Unplanned
Last Updated: 30 Jan 2020 08:41 by ADMIN
Created by: SWAT
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2

Hi,

I think it make sense that Telerik will provide a built in tool to support QR Code scanning with the Kendo UI Mobile suites.

At the moment we need to use some 3rd parties JS libs for it and it will really help a lot if it will be part of the Kendo family and will support all type of OS/Devices.

 

Thanks,

ilan.

Unplanned
Last Updated: 24 Jan 2020 12:20 by ADMIN
Created by: Steve
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
11
When a user downloads a custom build from http://www.telerik.com/download/custom-download, provide a URL that the user can bookmark/save then use to go back to the custom build page with the same components checked and same kendo version selected.
Declined
Last Updated: 23 Jan 2020 20:25 by ADMIN
Created by: Jeremy
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
I'm currently using a chart with "categoryAxes.select" as a navigator for multiple other charts.
Problem being, when I display too much data, the navigator (and other charts) become laggy.
To help prevent that, I'd like a way to make the "selectEnd" and "SelectStart" events only fire on mouseup.
That would prevent multiple redrawing and help with the performance.
Declined
Last Updated: 23 Jan 2020 18:53 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
The ability to use multiple navigators on a column chart. 
Currently the option to compare two ranges of data on the same chart is not available out of the box.
Unplanned
Last Updated: 23 Jan 2020 18:50 by ADMIN
Add the feature of Thresholds in charts... change color if data is out of range...
Declined
Last Updated: 23 Jan 2020 18:48 by ADMIN
Right now it seems to support only Shapes and Textboxes, what plans do you have for supporting Charts and perhaps any plain HTML (that would then be possible to "kendoify")?
Unplanned
Last Updated: 23 Jan 2020 18:48 by ADMIN
Created by: Jeff
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
You can currently build a pie chart and display the value of each section of the pie by using a template on the label and the #= value #.  It would be nice if we could do something similar to this in the title or somewhere on the graph where we could display the sum of all of the values that are displayed in the graph.  It would also be nice if this could dynamically update when one particular item is filtered
Declined
Last Updated: 23 Jan 2020 18:47 by ADMIN
Created by: T
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Similar to specifying legend to bottom of chart, we should be able to put X Axis (or category Axis) Labels on the bottom, regardless of where the axis crossing value is. Sometimes the axis crossing value has to be at zero but the labels get in the way if this is the middle. If the data is dynamic, there is no way to use margin or padding consistently
Completed
Last Updated: 23 Jan 2020 18:35 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I'd like to show Totals for Stacked Bar / Columns Charts.  Maybe this could be like Aggregates in Grid where the Aggregate is accessible via ClientTemplate?
Declined
Last Updated: 23 Jan 2020 18:34 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
In my bubble chart, I'm trying to center each tooltip above it respective bubble.  However, each tooltip doesn't show up in the same relative position for each bubble.  This makes it very difficult to perfectly center each tooltip over its bubble.  It would be nice if there were an option to center the tooltip vertically above the bubble.
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>
Declined
Last Updated: 23 Jan 2020 14:56 by ADMIN
Created by: Roberto
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
As nodejs + express + jade is here, i think you should have more examples with jade and nodejs...
Completed
Last Updated: 23 Jan 2020 12:48 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
11
How about a easy way to build reports like invoices, labels, etc?
Declined
Last Updated: 23 Jan 2020 12:44 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Instead of pulling the validation message from the Title attribute, use the title in the formatted message. For people who are trying to write localized messages, this could be very beneficial since they can just replace the title with the correct field name and change the message in the options.errors just once for the localized error message.

   _extractMessage: function (input, ruleKey) {
        var that = this,
                customMessage = that.options.messages[ruleKey],
                fieldName = input.attr(NAME);

        customMessage = $.isFunction(customMessage) ? customMessage(input) : customMessage;

        return kendo.format(input.attr(kendo.attr(ruleKey + "-msg")) || input.attr("validationMessage") ||  customMessage || "", input.attr("title") || fieldName, input.attr(ruleKey));
    },
Completed
Last Updated: 23 Jan 2020 12:17 by ADMIN
Try tabbing through a form with a bunch of inputs and tabbing onto a button at the end. Although it works you can't tell because the button doesn't indicate the focus!
Declined
Last Updated: 23 Jan 2020 12:14 by ADMIN
Created by: Rui Marinho
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
 I hate to create or have hardcoded ui in my view. 
Similiar with what Silverlight does with the dataform ,if i bind my form to a model for each property in my model  Kendo could create the label and the right input field on the ui.
Completed
Last Updated: 23 Jan 2020 11:34 by ADMIN
You have this .k-state-disabled class in kendo.css but it's not used in scripts. That's why I forced to copy all .k-state-disabled class styles to new class like

.k-button:disabled, .k-button:disabled:hover, .k-button:disabled:active {
background-color: #E3E3E3;
border-color: #C5C5C5;
color: #9F9E9E;
opacity: 0.7;
cursor: default;
outline: 0 none;
}

(this is my temporary solution)
Completed
Last Updated: 23 Jan 2020 11:10 by ADMIN
Created by: Steve
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
I am trying to use the DropDownList and find this level of documentation:

 <div class="demo-section k-content">
    <h4>Products</h4>
    @(Html.Kendo().DropDownList()
          .Name("products")
          .DataTextField("ProductName")
          .DataValueField("ProductID")
          .DataSource(source => {
              source.Read(read =>
              {
                  read.Action("GetProducts", "Home");
              }); 
          })
          .HtmlAttributes(new { style = "width: 100%" })
    )
</div>

The only other source file is a simple Controller Action method to return a result. There is no indication of what type of data is to be returned by the read.Action("GetProducts", "Home"); 

What fields are required in the data?
What field or fields are passed back to the Controller on Submit?
Is it JSON?
Is it in a wrapper like the Grid uses?

It is issues like this that make ALL the Telerik products difficult to use, and makes me consider using other tools. I think it lowers the value of the tools when Telerik appear to be happy that documentation of this level exists and users have to find answers and working real life examples on sites such as StackOverflow.
Unplanned
Last Updated: 23 Jan 2020 11:09 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
The Detailed description In:
https://github.com/telerik/kendo-ui-core/issues/3903


Bug report
Currently, DataSource bound Spreadsheet throws "Unsupported for multiple ranges" error when attempting to delete the content from multiple not adjusted cells.

The error is thrown by the values() method:

values: function (values) {
    if (this._ref instanceof UnionRef) {
        throw new Error('Unsupported for multiple ranges.');
    }
    if (this._ref === kendo.spreadsheet.NULLREF) {
....
Reproduction of the problem
Go to the DataSource Binding demo;
Select a few cells using the Ctrl + click;
Press Delete button on the keyboard;
"Unsupported for multiple ranges" error will be thrown from the values() method;

This bug has not been resolved in Version 2018.3.911.