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
Unplanned
Last Updated: 27 May 2021 10:44 by ADMIN
Created by: Imported User
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Hi Telerik Team:

I have some suggestions

1.- Add Scafolding for TreeList UI for ASP.NET MVC 
2.- Add Cell Edit with template for TreeList UI for ASP.NET MVC

Thanks
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" })
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.
Unplanned
Last Updated: 21 May 2021 05:40 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
4
The Upgrade Wizard should provide an option to only update currently used skins rather than adding all skins each time a project is upgraded.
Unplanned
Last Updated: 20 May 2021 11:24 by ADMIN
Security Trimming feature will call AuthorizeAttribute.OnAuthorization internally, it would be nice to make sure that IsAccessibleToUser is thread safe.

Thanks
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: 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. 
Unplanned
Last Updated: 14 May 2021 10:42 by ADMIN
Created by: Imported User
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
it would be blaze if the map markers would be a observable collection for mvc.this way you could update it through the viewmodel.
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.
Unplanned
Last Updated: 29 Apr 2021 11:03 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
as of today it is not possible to bind the map markers to signalr.
in grid it works. in kendo map not.
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: 02 Feb 2021 14:34 by ADMIN
Created by: Lee
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
7
When you export a sheet to Excel the Sheet is export as not-protected.  If there are cells that are locked then the user can edit them.  It would be really useful if you could specify tha a sheet were protected and when the sheet is exported it would be protected with a password.
Unplanned
Last Updated: 27 Jan 2021 12:58 by ADMIN
Created by: Marc
Comments: 1
Category: UI for ASP.NET MVC
Type: Bug Report
0

Hi there,

We've just hit a strange issue.  We have a DropDownList called "Title" that displays "Mr", "Mrs", "Ms" etc.  However, we sometimes noticed that the Title submitted to the form was "LoanBorrower".  This was strange as the only place "LoanBorrower" existed was in the MVC back end of the page with "ViewBag.Title = "LoanBorrower".

It appears that if the ViewBag has an entry with the same name as a Kendo form element, the elements default value is being set as the value in the ViewBag.

I have tried this with ViewBag entries other than Title, and the result is the same.

 

To Reproduce

At the top of my "Borrower.cshtml" page I have the following:

@{
    ViewBag.Title = "LoanBorrower";
}

 

Kendo DropDownList

I stripped the DropDownList down to the bare minimum and still had the problem:

@Html.Kendo().DropDownListFor(m => m.Title)

 

The control rendered as the following.  Note the value is set to "LoanBorrower" which is the value in ViewBag.Title:

<input data-val="true" data-val-length="Title must be between 1 and 20 characters" data-val-length-max="20" data-val-length-min="1" data-val-required="Select a title." id="Title" name="Title" type="text" value="LoanBorrower" />
<script>
	kendo.syncReady(function(){jQuery("#Title").kendoDropDownList({});});
</script>

 

Kendo TextBox

I then changed the Kendo control to a Kendo TextBox and had the same problem:


@Html.Kendo().TextBoxFor(m => m.Title)

 

The control rendered as the following.  Again, the value is set to "LoanBorrower":

<input data-val="true" data-val-length="Title must be between 1 and 20 characters" data-val-length-max="20" data-val-length-min="1" data-val-required="Select a title." id="Title" name="Title" value="LoanBorrower" />
<script>
	kendo.syncReady(function(){jQuery("#Title").kendoTextBox({});});
</script>

 

Standard TextBox

I then changed the control to a standard HTML Textbox and no longer had the issue.

@Html.TextBoxFor(m => m.Title)

 

The control rendered as the following.  Note that this time, the value is an empty string which is correct.

<input data-val="true" data-val-length="Title must be between 1 and 20 characters" data-val-length-max="20" data-val-length-min="1" data-val-required="Select a title." id="Title" name="Title" type="text" value="" />

 

 

 

 

 

 

 

 

Unplanned
Last Updated: 21 Jan 2021 06:34 by ADMIN
Currently on WidgetBuilderBase there is an HtmlAttributes method that clears any current HTML attributes before adding the new ones. It would be good if there was a separate method called maybe AddAttributes (or something similar) that would allow the addition of HTML attributes without clearing any existing ones.
Unplanned
Last Updated: 20 Jan 2021 11:48 by ADMIN
The MVC Grid uses the MVC EditorTemplates and currently does not support setting a JavaScript function name for the column's "editor" property.
Please consider adding the ability to set the javascript name for the column's editor.

http://www.kendoui.com/forums/kendo-ui-complete-for-asp-net-mvc/grid/binding-to-custom-editor-for-a-grid-column-i-e-drop-down-list.aspx 
Unplanned
Last Updated: 15 Jan 2021 19:47 by ADMIN
Created by: jwize
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1

Hi Team,

I would like to request to have a section in your documentation where the user could see what the DataSourceRequest and DataSourceResult would appear using different types of data such as OData, Json, and the like.   This way, people could inspect what the data would look like to make sure it is returning correctly, and review the structure of data.

Thank you!

Unplanned
Last Updated: 13 Jan 2021 08:42 by ADMIN
Created by: Bruce
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1

Currently, when an event that is grouped by multiple resources is dragged, it automatically updates the selected resource data with the one that corresponds to the drop target.

The more appropriate behavior would be to be to automatically preposition the event for the rest of the selected resources.

https://dojo.telerik.com/OPepavOr/2

Unplanned
Last Updated: 13 Jan 2021 08:09 by ADMIN
Created by: loi
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
13
When using the LoadContentFrom() in a tab inside a Tabstrip, the tab content does not get loaded until it become visible. 
Please consider making the Kendo Window behave like the TabStrip when a window use the LoadContentFrom() method, loading the content only when it become visible.
Unplanned
Last Updated: 13 Jan 2021 08:08 by ADMIN
Created by: martin
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
12
instead of using the text parameter to apply filter in server side, use the filter parameter of the DataSourceRequest/DataSourceResult object for the comboBox.