Completed
Last Updated: 13 Jan 2016 17:52 by ADMIN
Created by: Valentyn
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
32
Thank you for  adding Excel-like filter. This is what we wait for a long time.

Could you please add textbox to excel-like filter?
So, if there are too many options in filter i would like to search for option i need. (Kind of filtration in excel-like filter)

Example: http://imgur.com/SIdHmSb
Completed
Last Updated: 11 May 2016 07:51 by ADMIN
Created by: Paul
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
What a revolutionary concept, I made it myself!
Completed
Last Updated: 30 Sep 2021 08:14 by ADMIN
Created by: Kash
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Ontario and Canadian Govt ask all new sites to be WCAG 2.0 level A compliant since Jan 2014 and AA compliant by 2021. We need toolset fixed for this regulatory requirement.
Unplanned
Last Updated: 11 Mar 2021 15:19 by ADMIN
Created by: Justine
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
5
In the applications I work on we have multiple maps where there are shapes with different colors, tooltips with data, and various map markers. 

The Map widget would be greatly enhanced if it could support a legend!
Declined
Last Updated: 10 Aug 2015 16:02 by ADMIN
Completed
Last Updated: 10 Aug 2015 16:22 by ADMIN
Created by: michael
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
kendo tree list drag and drop function has only ui support.it's good if it will be customable.
Declined
Last Updated: 10 Aug 2015 16:27 by ADMIN
Created by: Vasim
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently to use the native mobile Date Picker I have to add if statement like so:

@if (Request.Browser.IsMobileDevice)
{
	@Html.TextBoxFor(model => model.DateTime, new {type = "date", @class = "k-textbox k-input", @onchange = "dataChanged()" })
}
else
{
	@(Html.Kendo().DatePicker()
                                  .Name("DateTime")
                                  .Events(e => e.Change("dataChanged"))
                                  .HtmlAttributes(new {style = "width: 120px;"})
                                  .Value(Model.DateTime)
                   )
}

What's worse is now the data() method cannot be used to reference the Date Picker in JavaScript, thus, another if statement has to be used:

if ($("#isMobile").val() = 1) {
    var dateTime = $("#DateTime").val();
} else {
    var dateTime = $("#DateTime").data("kendoTimePicker").value();
}

It would be great if something like UseNative(true) could be used keeping the Kendo Date Picker API:

@(Html.Kendo().DatePicker()
     .Name("DateTime")
    .Events(e => e.Change("dataChanged"))
    .HtmlAttributes(new {style = "width: 120px;"})
    .Value(Model.DateTime)
    .UseNative(true)
)
Completed
Last Updated: 12 Aug 2019 08:42 by ADMIN
Created by: Frédéric
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
Since the "workbook.columns[0].width" exists when exporting to Excel AND that the mix of cell.colSpan and cell.wrap doesn't change the row height automatically when the text wrap (it only works when colSpan = 1) I'd like the ability to change the row height manually :

rows[0].height = 50

Of course the best implementation for us would be the automatic row height calculation when text wrap with colSpan > 1.

Thank you !
Completed
Last Updated: 10 Aug 2015 16:32 by ADMIN
Created by: Hugo
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently the component is very limited to OLAP. Please implement PivotGrid with features like filtering and sorting to flat data, as well as is done in normal grids.
Declined
Last Updated: 10 Aug 2015 16:39 by ADMIN
Created by: Rajeev
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I am able to generate PDF file from Org Chart.  I am using Arabic word in Org Chart. My Arabic word is getting split in individual character and all characters are appearing left to right in PDF instead of right to left. My Arabic word is loosing actual meaning because of this reason. 

We are not facing this type of issues in your other reports where you have provided Save PDF option in drop down. 

Thanks & Regards,
Rajeev
Completed
Last Updated: 10 Aug 2015 14:00 by ADMIN
Created by: Anthony
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
If you add a context menu to a textbox it disables the box. I've asked about this previously in a support call but was told it's not likely to be supported as there's no demand for it. 
  It would allow for excel like interaction where you can select a number of textboxs on mobile and right click/long click to get a menu, 
Completed
Last Updated: 10 Aug 2015 13:21 by ADMIN
Created by: Nivas
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
Since Kendo grid is not a responsive widget, provide a option for users to hide lesser significant columns on smaller screens.

Let user specify the property "HideWhenLessThan" for a column in the grid, which represents the width of the screen below which the column is hidden in the grid. 

Example:
 columns: [{
                            field: "ContactName",
                            title: "Contact Name",
                           HideWhenLessThan: 600
                        }]
                           
Here the column would be hidden when the width of  the grid's parent div or the width of the browser is lesser than 600px.
Declined
Last Updated: 21 Mar 2017 19:08 by Pavel
Created by: Pranay
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
It will be great if Telerik gives same themes for AJAX and MVC. As new projects are developed using MVC and to match theme to old AJAX project it will be helpful.

When ever if any out-of-box theme is available in AJAX please provide same theme in MVC also.

Thanks
Completed
Last Updated: 22 Jul 2015 15:09 by Vino
Created by: Vino
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Need combo with single selection return more than one values. Like country, city, street selection in single control.

https://developers.google.com/maps/documentation/javascript/examples/places-searchbox
Duplicated
Last Updated: 26 Mar 2021 12:52 by ADMIN
You can currently set series labels to position "center" on the pie chart to get them to render on the slices, but sometimes slices are too small to contain these labels. It would be great if there were an option for the chart to detect when a slice is too small and render the label outside the chart, while still rendering labels on pie slices that are big enough to contain them
Completed
Last Updated: 21 Jul 2015 15:49 by ADMIN
Created by: Garry
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Your demos use a very old 1.9.1 version of JQuery.
When we update to later JQuery, this breaks much functionality in KendoUI.
Please make KendoUI work with all versions of JQuery rather than focus on new features. You have versionitis.
Completed
Last Updated: 04 Feb 2022 10:02 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
Add ability for tooltip on chart title text on Mouseover event, So we can provides more details about chart. 

Current tooltip option is not supported on Kendo chart title text.
Declined
Last Updated: 21 Jul 2015 14:36 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It'd be nice if I could this:

<kendo-combo-box k-data-source="flight.airport">
  <span class="k-state-default" k-template>
    <h3>#: data.name #</h3>
    <p>#: data.location #</p>
  </span>
</kendo-combo-box>
Completed
Last Updated: 15 Jul 2021 07:38 by ADMIN
Created by: Doug
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
14
I currently need a KendoUI version of  telerik:RadFilter. 
Like many here I have been using the Telerik ASP.NET controls since they were first launch and I am now migrating to KendoUI. It was my understanding that there was meant to be a migration so that all that was available in web forms would be available in KendoUI.
Of course the kendo version of  telerik:RadFilter has to cope with AngularJS, BreezeJS and OData - tho best start with the Kendo DataStore.
Unplanned
Last Updated: 11 Mar 2021 15:15 by ADMIN
Created by: Luiz
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
The Release Notes page for the Kendo UI (http://www.telerik.com/support/whats-new/kendo-ui/release-history) does not contain the exact version each release is. It only says something like "Kendo UI Q2 2015".

Please use the Reportings Release Notes page (http://www.telerik.com/support/whats-new/reporting/release-history) as the example to be followed, so that it is clear for us which version exactly the Q1, Q2 etc is connected to.