Unplanned
Last Updated: 01 Jul 2021 11:46 by ADMIN
Created by: Imported User
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
1
Probelm: 

Filterable Grid with a cell-type "number".
When this Cell will be filtered for the "number"-cell with the value "20", the value will automatically change to "20,00".
In order to remove this behaviour, you will have to asign a whole new kendo ui numeric textbox. (which is a littlebit too much).

Wouldn't it be better to asign a new cell option in the grid to avoid this problem?
Unplanned
Last Updated: 10 Jun 2021 12:45 by ADMIN
Would be great to limit the Locale files and / or make them specific to the locales you are actually using. e.g. only EN-NZ or EN-US
Unplanned
Last Updated: 29 Jun 2021 06:39 by ADMIN
Created by: Mark
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
Currently, you can accidentally click on the "X" when clicking on a spreadsheet  tab, which is very easy to do, and it instantly is deleted with no warning and no way to get it back.  

This is a serious problem for me, as I don't know of a workaround.  Suggestions:

1) Add a "Tab Deleted" event so that you can catch this and optionally cancel it.
2) Honor Workbook Protection in Excel so that you could prevent the tabs from being deleted.

Thanks,
Mark
Unplanned
Last Updated: 30 Oct 2023 15:29 by Steffan
Created by: Steffan
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
Currently, the drag and drop feature of the Upload is only available in asynchronous mode. It would be helpful, if this functionality is also implemented in the Upload's synchronous mode.
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: 25 Mar 2024 13:30 by ADMIN
Created by: Reza
Comments: 7
Category: UI for ASP.NET MVC
Type: Feature Request
1

There is a Kendo Validation in addition to ASP.net MVC one. 

There is a need for a method or script to disable the Kendo Validation and enforce the code to follow rules we define in the model.

Currently we have to write validation bypass script for each field, but I am looking for a way to disable Kendo Validations for the entire project or/and for specific page and it follows validation rules from the MVC model.

In most cases, validations from the MVC are sufficient and there is no need for redundance validations from the telerik.

 

Unplanned
Last Updated: 09 Mar 2023 18:59 by ADMIN
Created by: Nathan
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

Good Day,

We would like to submit a feature request to add a handler method for the `HasChildren` property of a HierarchicalDatasource for the MVC Wrappers. It currently only supports a string field name even though the Javascript api can handle a function. We are currently working around this by using the wrapper to define our widget, and then in a kendo.syncready we are creating a datasource and then using setOptions of the widget to achieve the same effect, which should be in the wrapper already.

Example code snippet:


<script>
        kendo.syncReady(function() {
            let panelBar = jQuery("#@panelBarId").getKendoPanelBar();
            if (!panelBar) {
                return;
            }            
            var ds = new kendo.data.HierarchicalDataSource({
                transport: {
                    read: {
                        url: '@Url.Action("LoadPanelBarResults", "Home")',
                        data: function (){
                            return resultsPanelbarData('@Html.Raw(searchTagString)', '@Html.Raw(parentTagString)');    
                        }
                    }
                },
                schema: {
                    model: {
                        id: 'IdString',
                        hasChildren: hasChildrenFunction
                    }
                }
            });
            
            panelBar.setOptions({dataSource: ds});
        });        
</script>

We hope this request is clear, let us know if there are any questions of the use of this scenario.

Thankyou for your time,

Regards,
Nathan

Unplanned
Last Updated: 16 Feb 2023 08:25 by ADMIN
Created by: Reza
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

There is a possibility to add Minimum/Maximum length validation in Kendo editor , but is is not user friendly. I am referring to method describe on the following website:

ASP.NET MVC Editor Component Add maxlength Validations - Telerik UI for ASP.NET MVC

What I am looking for would be easier way just by adding some attribute so the code should be like the following:

@(Html.Kendo().Editor() .Name("editor") .HtmlAttributes(new { style = "width: 100%; height:840px", aria_label = "editor" })

.MinLenght(10)

.MaxLength(5000) )

 

In this case, when you add the one which I added as Red it should automatically enforce it and do validation based on number of characters.

  
Unplanned
Last Updated: 09 Feb 2023 15:47 by Reza
Created by: Reza
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1

There are cases where we observe JavaScript errors, and the experience is like opening the Developer Tool in the browser and check the log in the Console. When the problem resides on the user, it is not easy to guide them to perform this action. To overcome this problem, there is a need for JavaScript error collector function. When we call this function, it should collect all JavaScript error log files and send them as a list. Then the developer would be able to use it to troubleshoot issues and also could implement interface like collect and store JavaScript error log files. It is recommended the error collector support the following data:

Location: the page leads to error.

Date and Time: with ability to customize it like set a time zone or default to match server.

Error message: Complete error message in the client

User: In case user login to the page

Browser-Agent Data: information about user's browser, operating system ...

Unplanned
Last Updated: 14 Dec 2022 11:00 by GL

Currently, the groupPaging is not supported and is missing in WebApiDataSourceRequestModelBinder, thus enabling groupPaging leads to undesired behavior with the following Grid configuration:

 $("#grid").kendoGrid({ 
        dataSource: { 
          type: "webapi", 
          pageSize: 50, 
          page: 1, 
          groupPaging: true, 
          total: 0, 
          serverPaging: true, 
          serverSorting: true, 
          serverFiltering: true, 
          serverGrouping: true, 
          serverAggregates: true, 
          group: { 
            field: "SomeText", 
            dir: "desc"
          }, 
          transport: {
            read: "Url..." 
          }, 
          schema: { 
            data: "Data", 
            total: "Total", 
            errors: "Errors", 
            model: { 
              id: "SomeId", 
              fields: { 
                SomeId: { type: "number" }, 
                SomeText: {type: "string" }, 
                SomeDate: { type: "date" } } } } }, 
        sortable: true, 
        filterable: true, 
        pageable: true, 
        columns: [ { field: "SomeId"}, { field: "SomeText"}, { field: "SomeDate"} ] 
      });


 

Unplanned
Last Updated: 07 Dec 2022 17:30 by Mahesh
Created by: Mahesh
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1

Hi Team,

I would like to request a way to set all UI for ASP.NET MVC components to deferred without using the deferred() method for each individual component.  

Thank you!

Unplanned
Last Updated: 28 Nov 2022 08:16 by ADMIN

Hi Team,

 

We need a solution for the below issue

On Telerik grid when we do filter options (server side)  on multiple columns the grid adding the

SQL keywords in filter logic like “and, or, where “like…

Our WAF (web application firewall) is stopping these  keyworks as part of the application security.

 

We have created a ticket on this issue (Support ID:1584292) , support team has provided some custom solutions but

Those are not working.

Can we have any feature in the grid which can do encryption of SQL keywords while passing it

To the server.

 

Thank you.

Unplanned
Last Updated: 28 Sep 2022 06:18 by Yanislav
Created by: SAA
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Currently, the API does not expose functionality that enables the user to rotate images. It would be useful if you can add such a tool in the toolbar that allows image rotation. 
Unplanned
Last Updated: 11 Jul 2023 11:04 by Phil

Currently, when you load a different Kendo theme on the page, the colors in the Charts and Gauges do not change and the components remain styled based on the originally loaded theme. In order for them to be styled by the new theme, the page must be reloaded.

It would be best, if the page reload can be avoided. For example, a method similar to the existing redraw() method could be implemented and it should be capable of detecting the currently loaded theme and redrawing the components accordingly.

Unplanned
Last Updated: 31 Jan 2024 07:53 by Greg
Created by: Greg
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
Adding SVG Helper and widget will provide the opportunity to add SVG icons without the need of additional scripts to be added manually
Unplanned
Last Updated: 25 Mar 2024 13:24 by ADMIN
Created by: Reza
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
There should be ability to select different voice for the CAPTCHA audio, the basic one could be selection between female or male voice and in more advance add some additional voice. Something similar to the Windows narrator where you are able to select different voices. 
Unplanned
Last Updated: 22 Feb 2023 08:03 by ADMIN
Created by: Reza
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1

In default ASP.net MVC, you have option to generate View from the EF, here is one example:

Tutorial: Generate views for EF Database First with ASP.NET MVC app | Microsoft Learn

I am looking for a similar option like we could right click and open wizard for Telerik ASP.net MVC and then select the EF and follow steps to generate a View such as form or grid. It also should generate required controller and should be smart like based on the data type creates the required field (e.g. date picker when data type is date) and the user could customize it after that.

Similar functionality already exists in the ASP.net MVC and it would be nice to have such a wizard for the Telerik too. I saw a similar one for Telerik for AJAX but it is not advance and I am looking for something simple and quick in Telerik.

Unplanned
Last Updated: 27 Feb 2023 09:43 by ADMIN
Created by: Reza
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

This problem raised in the community and it is challenging for developers to fix. Let say, I define the model for datetime as follow:

[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}", ApplyFormatInEditMode = true)]
public DateTime CustomDate{ get; set; }

When we call it in the View and add a code for the Html.Kendo().DatePicker() , then it should follow the format of the model. Currently, DateTime will ignore our defined method model and we have to go and change globalization and some additional code  for it to work. The expected result is Kendo DatePicker must adapt whatever we define in ASP.net MVC model without need to make any additional change.


 

Unplanned
Last Updated: 17 Jun 2022 12:14 by Martin
Created by: Martin
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1

Hi Team,

I'd like to request the functionality to directly include encrypted user credentials within the nuget.config.  I understand it is a limitation currently, but I would like to see change potentially in the future.

Thank you!

Unplanned
Last Updated: 21 Jun 2022 07:59 by ADMIN
Created by: Nuno
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

Hello,

I want to be able to right-click on a specific row-column and filter the rows using the value that appears from that row-column combination.
Instead of only having the filtering ability on the top of the column, have a way to filter a column in the middle by using, for example, the mouse right-click.

Regards,
Nuno Araújo