Completed
Last Updated: 07 Jun 2021 13:48 by ADMIN
I think it would be more helpful if the Kendo UI Documentation is structured similarly to other Telerik Product Documentations where each control (widget) provides a complete overview, visual structure, getting started, and a how-to section (which I'm guessing is a compiled list of frequently asked scenarios).  I'm struggling/spending too much time having to research how to do (what should be) the simplest things with these widgets.  It seems that' I'm having to revert to the Demo's and online threads more than the documentation.. that' can't be good!
Completed
Last Updated: 07 Feb 2014 15:20 by ADMIN
Created by: Ian
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
2
The Multiselect control hardcodes the style of the Placeholder to Arial, 13px. Please make this either have HtmlAttributes or put a style on it, that can be overwritten.
Completed
Last Updated: 27 Jan 2022 08:18 by ADMIN
Created by: Danka
Comments: 10
Category: UI for ASP.NET MVC
Type: Feature Request
48
It´s the only missing pice of this great framework. I really hope for it in a near feature.
Completed
Last Updated: 02 Feb 2016 11:23 by ADMIN
Created by: Raghu
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
18
I am using Kendo Scheduler to show the appointments. I have appointment creation/edition screen. I want to redirect it to that page whenever user tries to add/modify an appointment/ Recurring  appointment  from Scheduler. I want to hide the Edit Recurring Item popup message in KendoUI Scheduler while editing recurring appointment as I want to edit the whole series instead of editing single occurrence. So whenever user tries to edit recurring appointment, i want to redirect it to appointment editing screen with all the details without showing any message.
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.
Completed
Last Updated: 27 Jan 2022 08:20 by ADMIN
Created by: Sanjay
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
46
Create a breadcrumb trail like horizontal navigation on top of web page below headers which will provide a hierarchical site structure.

Typical breadcrumbs looks like:
Home page > Section page > Subsection page
Completed
Last Updated: 25 May 2021 09:59 by ADMIN
Created by: Saeid
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
4
Hi
It is possible to create a form layout with navigation toolbar to navigate between records?

In windows application you can use textbox and other controls and bind this controls to datasource and use navigation toolbar to navigate between records.
Also this form layout can design for master-detail layouts with grid widget or other widgets.
Completed
Last Updated: 25 Nov 2013 15:16 by ADMIN
Created by: Imported User
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
Presently, there's no way to pass a parameter to the Deferred function. If i have a need to make the control deferred depending on a condition, i have to write the code this way:

@{
    var treeView = Html.Kendo().TreeView()
        .Name("aName");
        
    if (this.IsAjax)
    {
        treeView.Deferred();
    }
    
    treeView.Render();
}

It would be great if we could pass a parameter that way:

@(
    Html.Kendo().TreeView()
        .Name("aName")
        .Deferred(this.IsAjax)
)
Completed
Last Updated: 11 Jun 2021 10:51 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
In the ASP.NET MVC Wrappers for kendoWindow there is a Visible(bool) option which the docs suggest is to stop the window displaying on page load.  

However, setting it to true or false and the generated javascript is always the same and the window opens on page load.

I'm now creating them manually in javascript myself to get round that but would be nice to use the MVC wrappers as they are intended.
Completed
Last Updated: 07 Jun 2021 11:53 by ADMIN
Created by: kapil
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Please suggest me any control available of kendo UI to display multi level relational database with add,edit and delete exclude Treeview
Completed
Last Updated: 21 Jan 2021 06:55 by ADMIN
Created by: Imported User
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
9
We all know that the default JavascriptSerializer built into ASP.NET leaves much to be desired, which is why developers are swapping out the built in one from ASP.NET for others such as JSON.NET and ServiceStack.

The issue that a lot of developers encounter when working with the MVC Wrappers is that it appears to be using the build in JavascriptSerializer, which is miserably slow and hard to work with when trying to take data from an ORM (with navigation properties) and display it on the Grid. Most of our grids closely represent a table in our database, but because the JavascriptSerializer doesn't support any type of navigation properties, we are always forced to write some DTO that flattens the object out to contain just simple datatype properties.

If we could REPLACE the JavascriptSerializer with our own framework - such as JSON.NET or ServiceStack, then we would be able to get our job done a lot faster without the extra plumbing.

This feature would mean that this "known issue" could be resolved by people simply swapping the JavascriptSerializer for a better one: 
http://docs.kendoui.com/getting-started/using-kendo-with/aspnet-mvc/helpers/grid/troubleshooting#a-circular-reference-was-detected-while-serializing-an-object-of-type
Completed
Last Updated: 21 Jan 2020 09:21 by ADMIN
Created by: Heiko Falk
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
7
To have a consistent look in grids toolbar, it should be possible to add an icon class to custom buttons. Not possible through .HtmlAttributes() because those gets applied to the wrapper link and kendo icons are displayed via inner span tag.

.ToolBar(toolbar =>
    {
        toolbar.Create(); // Has [+]-Icon
        toolbar.Custom().Text("My Custom Button"); // Does not have an icon
    }

Would be nice to have an option like

toolbar.Custom().Text("Reset Grid Settings").Icon("k-i-funnel-clear");

which results in 

<a href="/Tarife" class="k-button k-button-icontext">
    <span class="k-icon k-i-funnel-clear"></span>
    Reset Grid Settings
</a>
Completed
Last Updated: 11 Jan 2021 14:49 by ADMIN
Created by: Ivan
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
23
OData support for Kendo UI ASP.NET MVC Server Wrappers

@* OData support for Kendo UI ASP.NET MVC Server Wrappers *@ 
@(Html.Kendo().Grid<Album>()
    .Name("gridX")
    .DataSource(dataSource => dataSource
    .Ajax()
        //.OData  // Instead of .Ajax()
            // Results:
            //  - dataSource.type = 'odata' instead of 'aspnetmvc-ajax' set by .Ajax()
            //  - dataSource.schema.data = function (data) { return data.value; } - data source will be bound to the ODate values field
            //  - dataSource.schema.total = function (data) { return data['odata.count']; } - The total item count is in OData odata.count field
        
        .Read(read => read.Url(albumUrl).Type(HttpVerbs.Get)
            .Local() // Result: dataSource.transport.options.read.dataType = 'json'; (Default value: 'jsonp')
            )
        .Create(create => create.Url(albumUrl).Type(HttpVerbs.Post))
        .Update(update => update.Type(HttpVerbs.Put)
            .Url(x => _albumUrl + x.Id;) // Instead of .Url(albumUrl)
                // Result: dataSource.transport.options.update.url = function (data) { return _albumUrl + data.Id; };
                // Note: WebAPI needs the ID of the entity to be part of the URL e.g. PUT /api/Album/1
            )
        .Destroy(destroy => destroy.Type(HttpVerbs.Delete)
            .Url(x => _albumUrl + x.Id;) // Instead of .Url(albumUrl)
                // Result: dataSource.transport.options.destroy.url = function (data) { return _albumUrl + data.Id; };
                // Note: WebAPI needs the ID of the entity to be part of the URL e.g. DELETE /api/Album/1
            )
        )
)
Completed
Last Updated: 11 Jun 2021 11:06 by ADMIN
Created by: Duncan
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
I want to load a particular ViewModel into a treeview but using the MVC wrappers does not allow for setting what field will be the Id, and the hasChildren property. The model information can be set via the JavaScript configuration though.

It would also be nice to mark additional data on the model that should be sent to the Read action along with the Id from my item.
Completed
Last Updated: 17 Sep 2018 14:06 by Telerik Admin
Created by: Ayushman
Comments: 6
Category: UI for ASP.NET MVC
Type: Feature Request
27
Completed
Last Updated: 24 Jun 2021 13:30 by ADMIN
Created by: Jignesh
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
Kendo UI Menu currently supports only mouse over on child/sub menu items.

Root items are configurable to open only if moust is clicked.

But actually child items also should have the same type of configuration.

In my organisation people simply clicking everytime on menu items, they dont wait for the mouse to open its child items. And when the child menu items opened they press mouse button by mistake and the menu gets closed that gets them irritating.
Completed
Last Updated: 10 Jun 2021 06:01 by ADMIN
Created by: Imported User
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
2
I need configure in my Razor View, with my Multiselect helper, the maxselectedItems property (like others properties: MinLength, Filter,etc)
Completed
Last Updated: 28 May 2021 05:27 by ADMIN
Created by: Brian
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Currently for the Window and Tooltip controls (possibly others, but those are the ones that I'm working with), the Height and Width properties are both integer properties which set the height and width in pixels.  I would like the ability to be able to enter Height and Width in 'em' units, much like can be done with the grid column widths. 
Completed
Last Updated: 11 Jun 2021 14:44 by ADMIN
Created by: chris kidd
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Most of the time DefaultValue isn't known.  Allow us to enter null or don't require it.
Completed
Last Updated: 13 Jan 2021 08:15 by ADMIN
Created by: Devon
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
9
Include an x.js as well as x.min.js files in the upgrades. MVC's bundle config by default does not include the .min file in debug mode.