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: 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: 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: 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: 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

Declined
Last Updated: 22 Mar 2023 16:01 by ADMIN

Aren't the files in the /Content/kendo/2023.1.314/ folder KendoUI version files, not MVC version files?

Below is the contents of the file after upgrading to the new version.

I thought it was strange, so I browsed the stylesheet folder of the newly installed version.

The folder contents of the previous version were as follows.

Isn't it a problem with the distributed installation files?

 

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: 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: 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: 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
Under Review
Last Updated: 23 May 2024 13:52 by ADMIN
Created by: Ed
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

I would recommend that you look at your MVC and ASP.NET core products and try to build some consistency.   

When I learn one component, I kind of expect other similar components to be close to the others.  For instance TreeList and Grid both have toolbars, yet the builders use different capitalizations for their names.   Treelist and Grid both have editable settings, but Treelist does not have the method AdditionalViewData.  

There are many more inconsistency that make these components really hard to use. 

Planned
Last Updated: 07 Jun 2024 13:25 by ADMIN
Created by: Ed
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

When I am trying to use your components, I have to look things up on your web site.  Considering you develop web site components, I would think that your site would behave very well.  What I find is that I am often frustrated by web site.  Here is an example:
https://docs.telerik.com/aspnet-mvc/api/kendo.mvc.ui.fluent/taskboardbuilder?_gl=1*3hzp1t*_ga*MTEwODg5NTUzNy4xNjc5MDc0ODQy*_ga_9JSNBCSF54*MTcxNzE3MjQ2NS4zNDMuMS4xNzE3MTczMzA1LjE2LjAuMA..*_gcl_aw*R0NMLjE3MTY0NzU0MDYuQ2owS0NRancwcnV5QmhEdUFSSXNBTlNaM3dwOXNTVTZDZC1rU0ViRVdYNDNjYVV2U0pnOWZOcFpHSk10YzVmOWhOX3hZY3owQlppb045RWFBbVpnRUFMd193Y0I.*_gcl_dc*R0NMLjE3MTY0NzU0MDYuQ2owS0NRancwcnV5QmhEdUFSSXNBTlNaM3dwOXNTVTZDZC1rU0ViRVdYNDNjYVV2U0pnOWZOcFpHSk10YzVmOWhOX3hZY3owQlppb045RWFBbVpnRUFMd193Y0I.*_gcl_au*MTAyOTkxNjgzOC4xNzEyOTMxMDQ3&_ga=2.233747739.449664680.1716902667-1108895537.1679074842&_gac=1.124170360.1714792673.Cj0KCQjwltKxBhDMARIsAG8KnqWeETNM6gbjk2Jt1wTc9LrEO5gPp1cwyMu5bYB9fTjPB6DpZ_mC0MsaAixAEALw_wcB

On this page you basically have three main sections:
The "Api reference" list on the left with a vertical scroll bar.
The "IN THIS ARTICLE" list on the right.  No scrollbar
The actual api methods in the middle which scrolls with the main scroll bar.

But the "IN THIS ARTICLE" list section on the right never scrolls.  I would like to be able to scroll through the list to see possible methods, but I can't.  I know they are there to help navigate to a method but since a bunch of methods are basically cut off .....

Remember that first impressions aren't the only impression.  You can make the sale with your demos, but can you keep the customer with your documentation?

 

 

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
Declined
Last Updated: 02 Feb 2016 13:26 by ADMIN
Created by: Tim
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
When upgrading to Kendo MVC, the existing method renames the folder inside the kendo folder instead of the files.  This method of upgrading applications breaks them every time.

The MVC Bundle.config allows the use of the wildcard {version} for version changes.

Why not use this system instead of the upgrade method you use?
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: 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?
Completed
Last Updated: 09 Nov 2015 09:53 by Robert Madrian
Created by: Robert Madrian
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
Is it possible to add a Outlook "Preview Row" functionality in the next release please?

see https://demos.devexpress.com/MVCxGridViewDemos/Rows/Preview

robert
Completed
Last Updated: 06 Nov 2015 10:41 by ADMIN
Created by: Uroš
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
It would be nice to have option to bind ComboBox to data on client (javascript array). In case you have 2 ComboBoxes using same list of items, combos call server method 2 times.