Completed
Last Updated: 10 Jun 2021 06:32 by ADMIN
need button for downloading files from file browser in telerik ui for mvc/kendo mvc

thanks
Completed
Last Updated: 03 Jun 2021 11:23 by ADMIN
Created by: MG-Hakan
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
A feature like devexpress MVC "Insert DevExpress MVC Extension" would be a great help preparing an MVC cshtml mark-up with Telerik MVC extensions.
Declined
Last Updated: 15 Jul 2021 07:24 by ADMIN
If you change the dataSource to a grid (for example by changing the filter conditions) so that less data is returned, you will not be warned if the current page is no longer valid. No error is reported and no data is returned and you won't have a clue why.

Try this to replicate:

Make a paged grid plus a couple of datepickers to filter the grid data by date range. Add a button to make the new filter dates effective.

Write a new MVC controller method to populate the data, using the ToDataSourceResult extension method e.g. "return Json(obj.ToDataSourceResult(request));" to return data.

Open a sizeable dataset in the grid (many pages) and go to the last page.

Change the filter conditions to be much more restrictive. Click the button to make them effective.

Watch as the grid displays no data, the code reports no error and stepping into your controller confirms that the method is returning data.

Confusing huh? An error or warning would make this much clearer.
Completed
Last Updated: 03 Apr 2024 07:45 by ADMIN
Release 2024 Q1
Created by: Victor
Comments: 21
Category: UI for ASP.NET MVC
Type: Feature Request
25
The Grid should allow switching between case sensitive and case insensitive filtering.
Declined
Last Updated: 15 Jul 2021 07:22 by ADMIN
Static property requires null instance, non-static property requires non-null instance.
Parameter name: expression

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.ArgumentException: Static property requires null instance, non-static property requires non-null instance.
Parameter name: expression

[ArgumentException: Static property requires null instance, non-static property requires non-null instance.
Parameter name: expression]
   System.Linq.Expressions.Expression.Property(Expression expression, PropertyInfo property) +4376691
   System.Linq.Expressions.Expression.MakeMemberAccess(Expression expression, MemberInfo member) +90
   Kendo.Mvc.Infrastructure.Implementation.Expressions.MemberAccessTokenExtensions.CreateMemberAccessExpression(IMemberAccessToken token, Expression instance) +122
   Kendo.Mvc.Infrastructure.Implementation.Expressions.ExpressionFactory.MakeMemberAccess(Expression instance, String memberName) +107
   Kendo.Mvc.Infrastructure.Implementation.Expressions.PropertyAccessExpressionBuilder.CreateMemberAccessExpression() +70
   Kendo.Mvc.Infrastructure.Implementation.Expressions.MemberAccessExpressionBuilderBase.CreateLambdaExpression() +17
   Kendo.Mvc.Infrastructure.Implementation.SortDescriptorCollectionExpressionBuilder.Sort() +120
   Kendo.Mvc.Extensions.QueryableExtensions.CreateDataSourceResult(IQueryable queryable, DataSourceRequest request, ModelStateDictionary modelState, Func`2 selector) +888
   Kendo.Mvc.Extensions.QueryableExtensions.ToDataSourceResult(IQueryable`1 enumerable, DataSourceRequest request, Func`2 selector) +58
Declined
Last Updated: 03 Jun 2021 11:27 by ADMIN
Created by: Keith
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
Please support VB in your MVC Scaffolding
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. 
Completed
Last Updated: 10 Jun 2021 13:40 by ADMIN
Created by: Gord
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
The WPF implementation of the Kendo Grid has a "selectColumn" type that can be used to create a checkbox column that implements a multi-select functionality into the grid.  

It would be nice to get this kind of built-in functionality in the standard javascript version of the Kendo Grid, instead of having to manually create a templated unbound column.
Declined
Last Updated: 10 Jun 2021 06:46 by ADMIN
With the current version available from the DLL it will be possible to simplify bundling and include of CSS and JS files. I currently do something along the lines of

    //BundleConfig.cs
        var version = typeof(Kendo.Mvc.UrlGenerator).Assembly.GetName().Version;
        var kendoVersion = string.Format("{0}.{1}.{2}", version.Major, version.Minor, version.Build);
 
 
        bundles.Add(new StyleBundle("~/Content/kendo/"+kendoVersion+"/css").Include(
            "~/Content/kendo/"+kendoVersion+"/kendo.common.min.css",
            "~/Content/kendo/"+kendoVersion+"/kendo.default.min.css"
            ));
 
        bundles.Add(new ScriptBundle("~/Scripts/kendo/" +  kendoVersion +"/scripts").Include(
            "~/Scripts/kendo/" + kendoVersion + "/kendo.all.min.js",
            "~/Scripts/kendo/" + kendoVersion + "/kendo.aspnetmvc.min.js",
            "~/Scripts/kendo/" + kendoVersion + "/cultures/kendo.culture.en-GB.min.js"
            ));

And similarly in the views. Getting the version directly from the DLL without hacking around in Assembly.GetName.Version and string manipulation will make this clearer. I'd also suggest you update the documentation to reflect this pattern.

As its a new method/getter, it is not a breaking change.
Completed
Last Updated: 03 Jun 2021 11:30 by ADMIN
Created by: Muhammed
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
2
support odata v4
Unplanned
Last Updated: 25 Mar 2024 13:16 by ADMIN
Just like posted here (and declined) : http://kendoui-feedback.telerik.com/forums/127393-kendo-ui-feedback/suggestions/3844570-serialization-support-of-datasourcerequest-and-app

I would like to see a portable separate assembly that : 
- can be referenced both on ASP.NET MVC side and WCF server side.
- A DataSourceRequest and DataSourceResult class that serialize well in both SOAP and REST WCF.

Referencing Kendo from the Application server side also requires references to System.Web.Mvc, Razor pages, ... and others that shouldn't be necessary.
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
Declined
Last Updated: 15 Jul 2021 07:25 by ADMIN
Created by: Imported User
Comments: 4
Category: UI for ASP.NET MVC
Type: Feature Request
1
Today, when we use IEnumerable<dynamic> type as the model for the kendo grid, the grid is generated fine, but the javascript serialization fails when we pass the datasource to the GridBuilder constructor.
This results in empty grid client side, because the datasource is empty, even if the html initially generated contains the values.

This behavior comes from a problem with the JavaScriptSerializer (also present in the JSon() function of MVC)
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.
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: 10 Jun 2021 11:16 by ADMIN
Created by: Scott
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
In a treeview we have different model classes merged into a single model for consumption by the treeview. For example, an organization model and a person model. Based upon an attribute in the treeview model, we would like to present different templates. These templates would be set back on the server-side as the templates are stored in a database. The templates are designed by the end-users.

Thus, when an organization row appears in the treeview, it uses the orgTemplate, and when the persons under the organization appear, they use the personTemplate.
Completed
Last Updated: 19 Jan 2024 13:36 by ADMIN
Release 2024 Q1
Created by: Imported User
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
17
Right now the Telerik UI MVC NuGet package is a 30 MB package that installs not just the DLL, but a lot of boilerplate JavaScript and CSS. I prefer to acquire the necessary content via Bower, so I can only install what I need.

Currently, after every upgrade I have to wait for the package to install, then delete all of the unused content files. It would be nice if you supplied an "assembly-only" package, moving the content into an optional package that users who still need it could install. It would reduce upgrade time substantially, as well as offer less chance for a mistake.
Declined
Last Updated: 10 Jun 2021 10:59 by ADMIN
Created by: David
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
in the option from Grid this feature is missing
Completed
Last Updated: 27 May 2021 07:21 by ADMIN
Created by: Imported User
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
6
The current Kendo UI Grid does not offer support for external form editing of Grid records.  But competing companies offer support for this already as follows: http://demos.devexpress.com/MVCxGridViewDemos/Editing/ExternalEditForm

It would be great if the Kendo UI Grid also offers this functionality.
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