Unplanned
Last Updated: 20 May 2021 11:20 by ADMIN
Created by: VnDevil
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
I'm using NumericTextBox in ASP.NET MVC now, and I don't see it support Mouse Wheel like control for ASP.NET AJAX?
Unplanned
Last Updated: 10 Jun 2021 11:09 by ADMIN
Created by: Sean
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
In the normal ASP.NET control, a timepicker can have multiple columns just by setting a property. Not so, with the MVC version. In one of my applications, the time can span all day, so even with 30-minute intervals it can result in a lot of scrolling. I would prefer to have that same property available or at a minimum the ability to assign a custom template.
Declined
Last Updated: 12 Aug 2021 07:48 by ADMIN
Created by: Ken
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
3
Add the ability to display aggregates of non grouped columns in the group header.
Completed
Last Updated: 25 May 2021 10:14 by ADMIN
Created by: Ramu
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
3
need a week number functionality in Kendo datepicker
Declined
Last Updated: 23 Mar 2015 17:35 by ADMIN
Created by: Meerkat
Comments: 4
Category: UI for ASP.NET MVC
Type: Feature Request
3
I think you should seriously consider a .Placeholder option for the Datapicker controls. Other controls like the ComboBox have this and it is a great pity that it is not available for the DatePicker as well. It would be nice to see something like "Please enter your birthday" 
Completed
Last Updated: 31 Jul 2018 11:10 by ADMIN
Created by: Imported User
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
3
It would be nice to have a MultiColumnComboBox as we have it already in WinForms.
A MultiColumnComboBox is a special case of combo box control with Grid integrated in its drop-down. The control combines the functionality and features of DropDownList and Grid.

https://docs.telerik.com/devtools/winforms/multicolumncombobox/multicolumncombobox
Declined
Last Updated: 20 May 2021 11:21 by ADMIN
Created by: nadech
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
Wp10
Declined
Last Updated: 25 Sep 2013 11:39 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
As the DropDownListFor object has both a "DataValueField" and "TextValueField", i find it frustrating that the AutoCompleteFor object only has a "TextValueField.  This makes it cumbersome to actually get the ID and make it part of the MVC model binding.   Have a DataValueField would greatly simplify MVC model binding for the types of projects that I'm involved in.
Declined
Last Updated: 03 Jun 2021 11:29 by ADMIN
Created by: Nathan
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
Add some demos/samples for using MVC with VB particularly where Lambdas are involved in the C# example which stops them being converted to VB using the online conversion tools.
Completed
Last Updated: 17 Jul 2014 14:42 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
Update Kendo project template so that it is compatible with ASP.NET and Web Tools 2012.2.
Declined
Last Updated: 27 May 2021 07:07 by ADMIN
Created by: Jessica
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
3
I think it would be more useful to scroll to the first scheduled event on the day view rather than show an empty morning if there are only scheduled events in the afternoon. The month view does not show times, so when a day view is selected the user expects to see their meetings rather than having to scroll down to the first event. 
Unplanned
Last Updated: 25 May 2022 11:36 by Chris Edmonds
Created by: Chris Edmonds
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
Create a Telerik.Mvc.Export NuGet package for UI for ASP.NET MVC
Unplanned
Last Updated: 03 Jun 2021 10:59 by ADMIN
Created by: Dan
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
Make the TreeList wrappers support the same functionality as the Kendo UI TreeList.  Make the method Height support also string values
Declined
Last Updated: 26 Jan 2018 16:55 by ADMIN
Created by: Imported User
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
2
Please add support for the following:

1. Out of the box support for ComboBox grid column which supports nullable values. Currently you have to set a default value for a column which utilizes an editor template using a combobox, otherwise changes to that combox are not captured. The example provided here,https://www.telerik.com/support/code-library/binding-nullable-field-to-dropdownlist-editor-in-grid, works, however, once a change is made the combobox text is set to the value which renders the control ambiguous to the end user.

2.Similarly, there is an issue that occurs when using Server Filtering for comboboxes where the Id is returned but then the combo box text is set to the ID.

I really appreciate the Grid and Combobox features and use them in all of my projects, but these two issues have cost me hours and countless headaches trying to come up with workarounds for things that should work out of the box.

Thanks
Unplanned
Last Updated: 29 Apr 2021 11:00 by ADMIN
Created by: Abdulmalik
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
Just like RadRibbonBar - Telerik ASP.NET AJAX RibbonBar, populating it from xml. 

We need similar control for MVC. If similar solution exists can you provide me with some examples. 

Thank you 
Unplanned
Last Updated: 14 Jun 2023 05:52 by ADMIN
I would like to have support for @mentions in your editor, similar to GitHub, Facebook etc.
Unplanned
Last Updated: 03 Jun 2021 12:05 by ADMIN
Created by: P
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
In Kendo MVC Grid, the column of type Select() will be good if has an option to show/hide the checkbox in specific rows based on an expression. For example:
.Columns(columns =>
            {
                columns.Select().Visible(m => m.ShowSelect);
            })

Where "ShowSelect" is a property of my Model which is bound to the Grid.
Unplanned
Last Updated: 04 Jun 2021 08:22 by ADMIN
Created by: Leo
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
Many widgets offer functionality to define a template (header, row, toolbar or whatever) by an id, such a way that the id refers to a html section that actually contains the template like:
<script id="idOfSomeTemplate" type="text/x-kendo-template"> 
<!-- template contents --> 
</script> 

I use this a lot because it's easy to use and whenever the widget is part of another widget (common example: a grid part of a tabstrip) Razor /C# won't allow you to do nested inline markup blocks (@<text> </text>). With the above template it's possible to define the tempalte outside the nested inline block.
Now it seems the MVC wrappers don't have the possiblity to do this for the grid toolbar template. 
TLDR:
I would have expected this templateid method:
@(Html..Kendo().Grid<T>() 
.Name("Grid") 
.ToolBar(toolbar => 
{ 
toolbar.TemplateId("idOfSomeTemplate") 
}) 
) 
Declined
Last Updated: 10 Jun 2021 06:58 by ADMIN
Created by: ann
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
2
have an option on the grids where it does not defualt to the  date/local time. Users are asking for the same time to display across time zones.
I use the workaround but we still have issues with it.
Unplanned
Last Updated: 25 Mar 2024 13:23 by ADMIN
Created by: Eric Mooiweer
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2

Hello,

Request/suggestion to enhance the scheduling functionality. For production environments, especially with long running processes the current setup is not sufficient.

See excel for an example of how this could work. Extension of current timeline to include a year. Would be best if multiple timelines could be defined creating more or less detail depending on choices.

The other axis to relate to the resource/asset where the work will take place.

Currently the scheduler works best for short-running activities. Displaying longer running activities is a challenge.