Declined
Last Updated: 14 Jun 2021 13:39 by ADMIN
Created by: Imported User
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
When having a filter on a number, the only option to chose, is a NumericTextBox, which adds decimals to the number (very annoying).

    public enum GridFilterUIRole
    {
        Default = 0,
        NumericTextBox = 1,
        DatePicker = 2,
        DateTimePicker = 3,
        TimePicker = 4,
    }

The only way to get rid of the decimals, is to ad some scripts that does this:

function NumericFilter(e) {
    $(e.element).kendoNumericTextBox({ "format": "n0", "decimals": 0 });
}

We need a IntTextBox option.
Thank you.
Declined
Last Updated: 01 Dec 2014 10:16 by ADMIN
Created by: sathwik
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
I have edited the kendo grid example and i will post the code where i am able to replicat.
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).
Declined
Last Updated: 20 Nov 2014 20:35 by ADMIN
Created by: Bing
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
add maximize, minimize or close actions on sortable panel demo
Unplanned
Last Updated: 29 Jun 2021 06:38 by ADMIN
Make DataSourceRequest  and MenuItem objects serializable to support sql server session management. My suggestion is to make all these type of objects serializable.
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.
Unplanned
Last Updated: 10 Jun 2021 14:21 by ADMIN
Created by: Safris
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
ClientTemplateId is fine when you are using kendo templates, but in our case we use handlebars templates, and in order to tell a listview that we need to do something horrible like 

<script type="text/x-kendo/tmpl" id="TPStrengthTemplate"> 
	#= Handlebars.templates.TPStrength(data) #
</script>

asside from interop, the script tag is untenable in large applications, as it may force us to create TONS of superfious script tags (some with the same id in the case of repeating partial views). Especially when template precompiling is a 'best practice' for client templating (hence our use of handlebars)

instead there should just be an option to specify a client handler pointing to Handlebars.templates.TPStrength
Declined
Last Updated: 11 Jun 2021 08:38 by ADMIN
The Kendo UI Grid currently supports posting the rows in the grid back to the server with the rest of the form, but in order to do this you have to add ClientTemplates for each column, with a hidden input to store the value.  If you want to use client-side validation with this setup, you have to add the validation attributes to the hidden inputs as well.  In an ASP.Net MVC situation, this adds up to a lot of manual synchronization between the validation attributes that exist on the viewmodel and the corresponding columns in the view.  It would be great if the grid could enable this type of behavior in a way that is more automatic and requires less manual synchronization between the viewmodel and view.  For example, if there was some kind of MVC helper that would take the display expression and name for the hidden input and would generate it automatically, complete with the validation attributes from the property being bound to, that would be great.
Declined
Last Updated: 21 Feb 2014 14:08 by ADMIN
 in Thailand use Year is Buddhist Datepicker not work and another  problem can't not research in google so another tools is cool

Declined
Last Updated: 10 Feb 2014 12:04 by ADMIN
i need to scroll and view the grid header content when there is no data.
even i used   .Selectable() but tat does not help me.please advice
Declined
Last Updated: 13 Dec 2013 14:37 by ADMIN
Column Menu has a list of columns available in the Grid, When we uncheck selected Column from list (that is hiding from the list). That time Column has to be close.
As of now, hiding column from the list using Column Menu makes Column Menu to jump to top corner of the browser.
Declined
Last Updated: 13 Dec 2013 15:44 by ADMIN
We are not able to perform aggregation method sum on Data Table decimal field, it will show "No generic method 'Sum' on type 'System.Linq.Enumerable' is compatible with the supplied type arguments and arguments. No type arguments should be provided if the method is non-generic." exception, It will be much useful for the user, once it is rectified.
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
Unplanned
Last Updated: 11 Jun 2021 11:03 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
it would be nice Editor -> DocumentBrowser & MediaBrowser  same RadEditor
Declined
Last Updated: 24 Jun 2021 13:32 by ADMIN
Created by: Andrew
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
When user click on Edit/Add call custom url. To this url automate pass the ID(or viewModel for ASP.NET MVC) of current record (null if it's new record). This url have to return partial view for edit(or add) form (like template).
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.
Declined
Last Updated: 10 Jun 2021 14:17 by ADMIN
Created by: quan
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
1
What's way to Apply DisplayTemplate(Annotation) for my Model with Ajax binding (Read) 
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.