Unplanned
Last Updated: 23 May 2022 12:23 by J.P.
Created by: J.P.
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
Implement a SplitButton or a DropDownButton with some of the capabilities of the MultiColumnComboBox. It should be able to display data in rows and columns in its popup.
Unplanned
Last Updated: 06 May 2022 12:40 by Nicola
Created by: Peter
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
4
The Readonly() property is only available for the Switch control.  Please make available the Readonly() property for the TextBox, ComboBox, DropDownList and MultiSelect as well.
Unplanned
Last Updated: 29 Mar 2022 17:57 by Brandon
Created by: Brandon
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

Hi Team,

I would like to request the functionality to configure the FilterDescriptor's Member as a List rather than a field.  

Thank you!

Unplanned
Last Updated: 22 Mar 2022 07:56 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
Ability to write c# code or use model property value instead of just bool value to hide or show a cell(.hidden())
Unplanned
Last Updated: 17 Mar 2022 11:28 by ADMIN

Hello, 

During the completion of my ticket (1556993) it was suggested I request a feature and explain its purpose.

The a large grants accounting system I've built, management has requested the ability to control access to, and apply permission upon pages and features within the site.

For example, in the Federal Grants page with a grid using popup template editor, I need to limit display of the default create button, while displaying the rest of the toolbar.

Similarly, I to limit display of the edit and delete buttons individually.

I'm applying such constraints using custom roles with user membership in each roles.

 

 

Unplanned
Last Updated: 27 Jan 2022 08:39 by ADMIN

Hello community,

We would like to have the option / ability to apply accent insensitive filtering/searching for every control gives the ability to control, like grids, treelists, dropdownlists e.t.c.

For example, when using grid column filtering, if we have a data entry like 'Μόδεστος' in a column, we could retrieve this data entry by giving the following terms:

'μοδεσ' should return data entry, now doesn't

'μοδεστος' should return data entry, now doesn't

'ΜΟΔΕΣ' should return data entry, now doesn't

This case I am giving, takes cares only for " ΄ "  accent diacritic, but should apply for all diacritic, e.g 'προϊόντων', should return by searching for term like 'προιον'

I believe that that should be the default case, such as now ignoreCase does. 

Thank you,

AGGELIKI

 

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: 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.
Unplanned
Last Updated: 04 Nov 2021 10:50 by ADMIN
Created by: Steven
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1

EditorViewData does not work for popup edit mode.  But there are situations where we need to pass view data for a specific editor, like we can in InCell and InLine edit modes.  Unfortunately there is currently no easy way to do this.

It has been suggested to use AdditionalViewData or create a custom popup editor, but AdditionalViewData values would be the same for each widget inside the popup editor, and creating a custom popup editor for each and every grid we use would be cumbersome.  So I ask that you please seriously consider this feature request.

-Steven

Unplanned
Last Updated: 15 Oct 2021 16:31 by ADMIN

Consider implementing logic that strips js comments from the Kendo templates.

If the following js function is added into the Grid's custom popup editor:

<script>
	//some comment
	(function () {
		alert(1)
	})();
</script>
the function won't work, because the when the template is serialized the content of the script tag is put into one line, which causes everything after the comment to get commented. 

A possible workaround is to use the following comment syntax:
<script>
	/*some comment*/
	(function () {
		alert(1)
	})();
</script>
However, it would be helpful if there is dedicated logic that strips comments from the script tags, as this would allow using either of the comment syntaxes.

Completed
Last Updated: 25 Aug 2021 12:54 by ADMIN
Created by: Marcin
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
25
Cancellation token is widely supported in entity framework. And it has big benefits for long running queries to allow cancel them.

ToDataSourceResultAsync methods should support passing cancellation token as a parameter.
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.
Unplanned
Last Updated: 06 Aug 2021 10:08 by ADMIN
Created by: Paul
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1

Add Japanese to the supported cultures and provide the respective resources with localized messages:

https://docs.telerik.com/aspnet-mvc/globalization/localization#setting-the-current-language

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)
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.
Declined
Last Updated: 15 Jul 2021 07:24 by ADMIN
Created by: viswesh
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
2
The existing solution was built in 2009 using .Net 3.5 web forms framework (List View), ASP.Net Ajax (Accordion) and JQuery (validation). 

The web page accomplishes the following key functional requirements –

a.	Ability to group products – The groups are dynamically extracted from the same datasource that is providing the product list.  Using ASP.Net Ajax we were able to provide the expand / collapse visual effect.

b.	Ability to enter order quantities very quickly -  a lot of stores place orders at the last minute  (5-10 minutes before order deadline) for valid reasons.  The web page readily provides a text box for quick entry.  On a desktop, the user can traverse the rows within the group using the tab key.   The web page typically contains 150 –  200 products for entry.  

Having to click on Edit/Update/Cancel dramatically increases the number of clicks / touch / swipe.  Besides, it creates a real estate issue on smaller form factors.  

c.	Real time validation – using JQuery we were able to validate the row as and when the quantity was entered.  Any error would show below the row in question.  The error would continue to show until the quantity was revised.  The error however, will not stop the user from entering quantities on other rows.  This approach lets the user review any errors in the end.
Declined
Last Updated: 15 Jul 2021 07:23 by ADMIN
Created by: Arne
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
Possibility to iterate over all manually defined columns and f.i. set width or any other property. 
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
Completed
Last Updated: 01 Jul 2021 13:29 by ADMIN
I have data that is in RTF format to be able to format font the way the users want with links, etc.  To show that on a kendo grid is touch.  had to create/find a regular expression and do some special formatting for the links.  You currently only have editing for HTML
Declined
Last Updated: 01 Jul 2021 12:12 by ADMIN
Created by: tim
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
4
ToDataSourceResult is very very slow on Large datasets - getting the Total Count is the issue, have an option to omit the total count or provide a way to inject the total count with some more efficient code.