Completed
Last Updated: 07 Jun 2021 12:57 by ADMIN
Created by: Jim
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

This is in reference to the following forum post:

https://www.telerik.com/forums/helper-for-textbox#lpm4Co4Zy0-PHGzJD_E2mA

 

For consistency in the MVC product, it would be a good idea to expose built-in events such as the "change" event for the generic Html.Kendo().TextBox helper. This is provided for other controls like the DateTimePicker and even NumericTextBox (https://demos.telerik.com/aspnet-mvc/numerictextbox/events) but not for TextBox.

As mentioned in my post, this is not an insurmountable problem. I can do what I need by diving "down" into jQuery, but it would be nice to be consistent.

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: 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.
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
Completed
Last Updated: 01 Jul 2021 11:57 by ADMIN
Created by: Mathew
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
It would be nice to be able to assign a unique ID to each column to go along with the column's title. Makes it easier to find a column by it's ID instead of trying to find it by title. Especially if the user has reordered the columns.
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.  
Completed
Last Updated: 01 Jul 2021 11:38 by ADMIN
Created by: Andy
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
When converting a WebForms app with KendoUI controls in it to MVC, I used the MVC wrappers.  One thing that became very apparent is the lack of support for client templates.  For example, a bound column has a ClientTemplate, but no ClientEditorTemplate or ClientHeaderTemplate. Because of this, extra JS code has to be written to manually manipulate different parts of the grid.  Considering the MVC Wrappers render out the same HTML/JavaScript as the pure JavaScript counterpart, it would be EXTREMELY helpful if client templates were made available anywhere a server-side template exists.
Completed
Last Updated: 20 May 2015 08:35 by Ion
Created by: Ion
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
1
Hello, I got the package sample Telerik.UI.for.AspNet.Mvc6.Trial from c:\Program Files (x86)\Telerik\UI for ASP.NET MVC Q1 2015\wrappers\aspnetmvc\Examples\VS2015\Kendo.Mvc.Examples, as presented in http://docs.telerik.com/kendo-ui/aspnet-mvc/mvc-6/introduction, but is not compilable: services.AddKendo(); added in Startup.cs raises the error: The type 'IServiceCollection' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.Framework.DependencyInjection.IServiceCollection, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'. It seems the sample package needs to be rebuild with the new dnx dependencies. Can you update the package in an internal build?
Thank you!
Completed
Last Updated: 02 Aug 2016 07:07 by anas
Created by: Saeed
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
export PDF in Persian or Arabic character is incorrect
Kendo UI supports PDF export but no export correctly with Persian and Arabic characters.
Completed
Last Updated: 16 Feb 2015 11:43 by ADMIN
Created by: carl
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
I find the spinners on numeric text boxes useful about 2% of the time.  Please make the default for them not to show.  I think it is ridicules to have to go through this:
var numeric = $("#APVol").kendoNumericTextBox().data("kendoNumericTextBox");

        numeric.wrapper
               .find(".k-numeric-wrap")
               .addClass("expand-padding")
               .find(".k-select").hide();
just to make them nonfunctional but I still have the additional space being taken up for the spinner area. 
Completed
Last Updated: 02 Feb 2015 12:54 by ADMIN
Created by: Amal
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Right now we only have the option to apply a display format for a column only. But in some cases we may need to apply it for individual rows. Take the case of a grid where we need to list amounts in different currencies which are having different precision in a row wise manner
Completed
Last Updated: 20 Nov 2014 20:46 by ADMIN
Created by: Böckle
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
I would appeciate the ability to define an edit template (like the detail template) in the grid (for Inline or popup editing), in order to have complete control about the layout and functions. Also the usage of all controls should be possible (nested grids).
Completed
Last Updated: 11 Jun 2021 09:07 by ADMIN
Created by: Mike
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
From what I can see, there is the possibility of providing the TimePicker a list of Dates when building it via JavaScript (http://docs.telerik.com/kendo-ui/api/web/timepicker#configuration-dates), but not through the MVC wrapper. It would be nice to have parity between the two methods, if possible.
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: 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: 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.