Completed
Last Updated: 01 Oct 2021 12:28 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
6
It would be great if I could resize a widget to span multiple columns in the kendo sortable panel demo. 

http://demos.telerik.com/kendo-ui/sortable/sortable-panels
Completed
Last Updated: 19 Jul 2021 08:10 by ADMIN
Created by: Michael
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
I tried to answer a forum question having worked on the issue several hours, wanted to help others with the kendo ui invocation. Realized that to post I have to buy a product. Why ...
Under Review
Last Updated: 06 Jan 2022 13:16 by ADMIN
Created by: Alex
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently there does not seem to be a way to get a reference to all kendo controls within a specified element or otherwise and perform generic operations on them.

I would propose you be able to call a JQuery method and do such things as the following:

    $(.kendoControlClass').each(function () {
        $(this).getKendoControl.enable();
    });

or call methods on specific type of controls

    $(.kendoControlClass-selectable').each(function () {
        $(this).getKendoControl.clearSelection();
    });
Unplanned
Last Updated: 19 Jan 2022 16:06 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
All controls which work with Models (validation/grid etc) should recognize displayName instead of field name to allow localization.

Model.define({
     fields: {
              Description: { type: "string", displayName: "Beschreibung", validation: { required: true, maxlength: 200 } },
              Number: { type: "number", validation: { min: 0, max: 300 } }
     }
   });
Completed
Last Updated: 16 Dec 2021 11:57 by ADMIN
Created by: jan
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
The fixed group header in the Multiselect Box is an awesome feature. 
But in some cases it is more confusing than helpfull. 
In those cases it should be possible the use grouping without the Fixed Group Header. 
At the time of writing (2017 Q1) this is only possible with a workaround. It would be awesome if this behaviour could be possible without the databound function. 


Example of the 'problem' and the workaround:
http://dojo.telerik.com/OkUhE/5
Completed
Last Updated: 06 Jan 2022 12:57 by ADMIN
Is Multiple File upload possible in imagebrowser ?

I would like to integrate upload (progressbar) with imagebrowser ?
Declined
Last Updated: 16 Dec 2021 11:53 by ADMIN
I would like to see a startup seed that would work for the following requirements: 
visual studio 2015
Microsoft.NETCore
Angular 2
Webpack
Kendo 
Unplanned
Last Updated: 20 Sep 2021 15:24 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Kendo map wraparound feature for geojson type

The wraparound feature in Kendo map doesnt work for GeoJso type, can we have this feature added.
Declined
Last Updated: 22 Jul 2021 11:27 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
adding / inserting form elements such as input, select (dropdown) through Kendo UI editor widgets
Completed
Last Updated: 27 Jul 2021 07:58 by ADMIN
Created by: SquadWuschel
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
11
Dropdown with Multiselect ability and no linebreaks when too many Items are selected just a simple ellipsis at the end.

like this:

https://1drv.ms/i/s!AmJX2ntYnv7IjbB0bGq-wscoFknbRA
Declined
Last Updated: 16 Dec 2021 11:44 by ADMIN
Created by: sohaib
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
how can we add minor grid lines between majorgridlines ??
Declined
Last Updated: 06 Jan 2022 12:47 by ADMIN
Using kendo UI file upload feature, currently we can upload or remove the files. I wanted to view the uploaded file (and download the uploaded file)
Completed
Last Updated: 16 Dec 2021 11:42 by ADMIN
For each value at data series i need a legend related to the value 
Declined
Last Updated: 12 Aug 2021 13:45 by ADMIN
Can you please add support different scales in radar charts for the different categories/axes? The radar chart becomes mostly useless when, e.g., one category has values that range from 0-10 and another ranges from 0 to 1,000,000.
Declined
Last Updated: 16 Dec 2021 11:38 by ADMIN
Created by: Andrew
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
After export there are html tags in cells of excel file. It could be fixed with custom handler for excelExport event, but it's not a good approach. Here is an example of this bug: http://dojo.telerik.com/eKARU/3
Declined
Last Updated: 16 Dec 2021 11:36 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
ButtonGroup is a part of Mobile Ui but on mobile it is not being responsive. Especially on small screen in portrait mode it is not responsible at all
Unplanned
Last Updated: 02 Dec 2021 12:37 by ADMIN
Please consider to support grouped boxplot for Kendo UI. For example, we would like to compare the machine capacity within multiple parameters, like machine type, machine no, and employee. We need to group 2 or more parameters in x-axis. Many statistical package could generate this group boxplot and reach our request. But we need to developt a web application with this function.
Unplanned
Last Updated: 09 Sep 2021 13:29 by ADMIN
Created by: Manuel
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
9
The idea is to have demos of the different widgets made with Typescript. Nothing fancy just the simple demos so we can understand the different ways to create the objects and their interactions.
Declined
Last Updated: 02 Dec 2021 12:34 by ADMIN
Created by: Pankaj
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Completed
Last Updated: 03 Jan 2020 14:57 by ADMIN
Created by: Dan Cornish
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
25
We need the ability to modify the title of the new predefined dialog control.  This control is a great replacement for JavaScript alerts and confirms.  However, we should be able to modify the title by passing in an additional parameter when using the control.

Below is a workaround using CSS:

    <style>
        .k-confirm .k-window-titlebar::before,
        .k-alert .k-window-titlebar::before {
            content: 'My New Title';
            font-weight: bold;
        }
        .k-confirm .k-window-titlebar .k-dialog-title {
            visibility: collapse;
        }
        .k-dialog .k-window-titlebar .k-dialog-title {
            visibility: hidden;
        }
    </style>