Completed
Last Updated: 20 Nov 2014 18:55 by ADMIN
Created by: Chrys
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
6
Create an mvc reportviewer control for MVC so that you don't have to hack it with an aspx page inside of razor view engine. Should work similar to the devexpress mvc reportviewer control.
Unplanned
Last Updated: 29 Apr 2021 11:09 by ADMIN
Created by: Tieson
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
6
Currently, if a developer wants to include only those files required for the extensions that are actually used in a project, they have to either figure the requirements out manually, or use the Custom Download tool at http://www.telerik.com/download/custom-download.

It would make the Visual Studio extension much more useful if the same functionality was available there; instead of dumping all of the JS and CSS files into the project, allow the developer to select the wrappers to include, and only include the CSS (and relevant assets) for the selected theme.
Completed
Last Updated: 21 Jan 2020 08:04 by ADMIN
Created by: Michael Sogos
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
6
I find ButtonGroup for mobile framework very useful to desktop (classic) web application too.

Could you add this widget to web framework please?

An important configuration is to choose if have comportament like "checkboxlist" or "radiobuttonlist", and for sure its orientation, vertical or horizontal. 
Duplicated
Last Updated: 06 Apr 2020 08:41 by ADMIN
I would like to see a separate assembly that can be referenced both on ASP.NET MVC and Application server side and that the DataSourceRequest can be transformed into a DataSourceResult on the Application server side and sent back to the website.

At the moment this is not possible due to the non-generic definitions of the DataSourceRequest and DataSourceResult classes. 

Referencing Kendo from the Application server side also requires references to System.Web and others that shouldn't be necessary.

Statically typed transport serialization should be supported, as required by WCF, Message Queuing or even Protobuf. Such transport mechanisms are required by N-Tier environments.

At the moment, if all DataSourceRequest's should be processed on a web server and propietary database licensing is in effect (ex. for MSSQL) where the cost is per port, it would end up being very costly.
Completed
Last Updated: 10 Jun 2021 06:12 by ADMIN
Created by: erick
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
5
Take the look and feel of the UI for IOS gauges, for instance the linear gauge, and duplicate that into a more customizable gauge tool set.

Particularly, the ability to gradient linear gauges, remove ticks and round the edges. Similar to a progress bar with a value marker.
Completed
Last Updated: 25 May 2021 09:57 by ADMIN
Release 2018.R2
Created by: Sujith
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
5
There is No Model Binding feature available for DataTable.ToDataSourceResult() Function, Implementation of this feature makes Kendo UI much interesting.
Declined
Last Updated: 25 May 2021 09:46 by ADMIN
Created by: Victor
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
5
I would like the possibility to use client details templates for server bound grids (and maybe other components). That is - the main grid should be fully loaded when the page loads (without ajax requests), but the details should be loaded on demand (when clicking the > icon) via ajax.
Declined
Last Updated: 07 Jun 2021 13:43 by ADMIN
Created by: max m
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
5
That will make web pages load faster
http://developer.yahoo.com/performance/rules.html#js_bottom
Unplanned
Last Updated: 21 May 2021 05:41 by ADMIN
Current Telerik MVC wizards for converting a project or creating a new Telerik project adds all possible Telerik files to the solution and also new Views under the shared folder.

As it is now, I include about FIVE Telerik script and css files in my views, but my project includes about 600 Telerik files in the /content and /script folders together. That is not ok and makes for very large and unnecessary complex solutions containing mostly unused code that makes the project difficult to overlook for an outside developer. In our company we like the solutions to only include files that are actually used and not alot of dead code.

Also, it is difficult to know which files that is possible to delete since there might be internal dependencies between kendo files.

It would be great to be given some choices in the wizards, like would you like to install everything or answer a few questions to do a custom installation. Things that are unnecessary are for example to include localization and globalization support for All possible languages even though the user specifies only German support, and also to include the files for all possible themes even though the user specifies the Metro theme. Then you could add a change project settings wizard where the theme or language or other settings could be changed. The wizard would simply change the included .js and .css files. Also the *.cshtml files in the Shared folder should be optional to install, not always included. Those are just examples, it would be great to customize the installations as much as possible.
Declined
Last Updated: 27 May 2021 07:05 by ADMIN
I'am looking for an event like "onDeleting" in my multiselect box, so I can confirm it or not. The current "onChange"-Event triggers to late. 
Unplanned
Last Updated: 12 Nov 2019 13:06 by ADMIN

The "CreateDataSourceResult" function verifies if the given DataSourceRequest "Sorts" list is empty and if the IQueryable provider is Entity Framework. If both are true, it adds a default OrderBy to the query on the first sortable property. This makes sense as EF must be ordered before skipping items.

The following statement checks the given DataSourceRequest and IQueryable:

if (!sort.Any() && queryable.Provider.IsEntityFrameworkProvider())

{...}

This leads to unwanted behavior if the query is already sorted on the server and the corresponding SortDescriptor is removed from the "Sorts" list. This is needed if we want to sort on a viewmodel property that doesn't exist on the EF model.

An additional check should be done on IQueryable to see if it is already ordered to avoid replacing the existing OrderBy with a default one.

if (!sort.Any() && queryable.Provider.IsEntityFrameworkProvider() && queryable.Expression.Type != typeof(IOrderedQueryable<TModel>))
{...}

 

 

 

Completed
Last Updated: 10 Jun 2021 06:44 by ADMIN
Created by: Anthony
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
5
At present to get the nice kendo checkboxes you need a checkbox followed by a label, you can't do this in asp.net mvc because

@Html.CheckBoxFor(x => x.IsEnabled)

renders as:

<input id="IsEnabled" type="checkbox" value="true" name="IsEnabled">
 <input type="hidden" value="false" name="IsEnabled">

The solution is to use the kendo mvc dll, or possibly just make your own, but it would be much easier if the kendo ui code could just ignore the hidden input, or if the two controls could be linked via 'for', 'data-for', 'data-whatever'
Unplanned
Last Updated: 27 May 2021 07:26 by ADMIN
Created by: Nick
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
5
It seems that the default behavior of the control is to set autocomplete="off".  When setting using the .HtmlAttributes method int he MVC wrappers and setting autocomplete to something else this setting is ignored.

I propose that the HtmlAttributes method should adhere to all settings that are passed into it.

Example using the MVC Wrappers:

html.Kendo().MaskedTextBoxFor(e).Mask(mask).HtmlAttributes(new { @class = "form-control", autocomplete = "tel-national" })
Completed
Last Updated: 19 Sep 2016 05:17 by ADMIN
Nowadays, was promissed exporting Gantt to PDF.
It is not working. Just prints what you see. It is very limited.
Should allow: 
1)  option like "allPages" to print all Gantt Diagram in any page format.
Making a "printscreen" of the visible gantt it is any solution for any project. 


2) Export Gantt data to excel.

Unplanned
Last Updated: 20 May 2021 11:08 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
4
You recently added a checkbox column feature to the grid control. However, you cannot control at the record level if that checkbox should be accessible. Every checkbox is selectable regardless of the data it represents. It would be nice to disable (or hide) the checkbox in the column based on some criteria in the record. 
Declined
Last Updated: 09 Apr 2019 14:37 by ADMIN
Created by: Jay
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
4
Create a PDF file viewer (like the one in WPF) so users can view PDF files in the web application. And can also control who can read, copy and/or print
Completed
Last Updated: 27 May 2021 07:08 by ADMIN
Created by: Giuseppe
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
4
Completed
Last Updated: 25 May 2021 09:52 by ADMIN
Created by: Rob
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
4
Right now a master grid can be configured in code using the GridBuilder, but the detail grid needs to be configured  in a template and a whole lot of Javascript.
As it is much easier to prevent errors writing (and compiling) server side code using the GridBuilder than using large parts of Javascript.

In the good old MVC Extensions there was a method 

DetailView(detial => detail.ClientTemplate(MethodToCreateDetailGRidUsingGriudBuilder())

I would very much like the same approach in Kendo UI as it provides a more robuste method of building Detail Grids.
Declined
Last Updated: 20 Jun 2019 13:17 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
4
Also add appropriate dependencies to the current package like JQuery version. So in this case the MVC would be dependent on the main Kendo package and the Kendo package would depend on JQuery.