Declined
Last Updated: 26 Jun 2015 17:45 by ADMIN
Created by: Peter
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
When using the NoRecords template that was just introduced in Q2 2015. If the grid has pagaing enabled, the NoRecords template appears below the paging row which looks awkward, since the grid is empty. It would be nice that if paging is enabled on the grid, and the NoRecords template is triggered, hide the paging row.
Declined
Last Updated: 09 Jun 2015 13:42 by ADMIN
Declined
Last Updated: 08 Jun 2015 09:28 by ADMIN
Created by: Prashant
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Illegal characters in path.
  ~/Content/kendo/fonts/DejaVu/DejaVuSans-Bold.ttf) format("truetype"
Declined
Last Updated: 01 Jun 2015 15:36 by ADMIN
Created by: Justin
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
If I have a splitter with two horizontal panes, the right pane will adjust, but the left pane will not. The pane splitter itself will not move, and does not allows the left pane to adjust. This often prevents a responsive page.
Declined
Last Updated: 29 May 2015 11:18 by ADMIN
Created by: soniya
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Hi,
Mvc KendoGrid With ajax call is not working,it only returns Json.
Declined
Last Updated: 01 Jul 2021 11:33 by ADMIN
Created by: Imported User
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
1
We can add option for No filter in filter selection , Is consumes less space then other
Declined
Last Updated: 10 Jun 2021 14:11 by ADMIN
Created by: Imported User
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
ASP.NET MVC DisplayTemplates should by evaluated and take effect in Grid columns (see: http://www.telerik.com/forums/using-a-displaytemplate). Thus for custom formatting, defining a ClientTemplate() should not be required.
Declined
Last Updated: 01 Jul 2021 11:17 by ADMIN
Created by: madcamp
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
today we need to loop through all rows in the Grid to do something in a row. On Telerik Extensions we had the OnRowDataBound event which we had the current row to do something. 
Declined
Last Updated: 22 Jun 2015 14:04 by ADMIN
Created by: Christoph
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
2
In cases where the number of tabs in TabStrip Control is big and they don't fit the container size I believe a feature where the exceeding tabs should appear in OverflowPopUp, like the way it happens on the ToolBar Widget is going to be highly acceptable. Currently there exists only one workaround in cases like this, which is, make the TabStrip scrollable. I believe this option is totally outdated
Declined
Last Updated: 11 May 2016 09:02 by ADMIN
Created by: Imported User
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
Please add Favourites/Bookmark features in ASP.net MVC. This feature is available only in WPF

Most of the websites would require this feature. I don't think none of the websites will be developed without this. I am not sure how this is been missed out in ASP.net MVC/Kendo.
Declined
Last Updated: 12 Mar 2015 13:32 by ADMIN
Created by: James
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
The Save Changes and Cancel Changes are are always enabled.  Make it so they are enabled if there are any uncommitted changes and disabled if not
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.
Declined
Last Updated: 11 Jun 2021 08:52 by ADMIN
Created by: Adam
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
2
When deleting or editing a series on the Scheduler, there is no option to edit/delete "all subsequent events".  Quite often, when editing a series, users will want to adjust the selected event and all subsequent events when editing a series.  iCal, Google Calendar, Outlook all support the option of editing a series in that manner. 

I would like the Kendo Scheduler Occurrence popup that contains the "this event only" and "entire series" options to also have options that include 
"all events in the series before the selected one"
"all events in the series after the selected one" 
like other calendar implementations.

Thanks
Declined
Last Updated: 10 Jun 2021 06:39 by ADMIN
I would expect a fluent method chain to not produce side effects when a method is invoked more than once.  particularly, concerning the ability to apply HtmlAttributes more than once to a method chain.  This prevents me from implementing meaningful extension methods to promote a DRY approach to views. 

In particular, I am trying to do something like this:

public static TextBoxBuilder<TProperty> PasswordFor<TModel, TProperty>(this WidgetFactory<TModel> widgetFactory, Expression<Func<TModel, TProperty>> expression)
        {
            return widgetFactory.TextBoxFor(expression).HtmlAttributes(new { type = "password" });
        }

        public static TextBoxBuilder<TModel> AutoFocus<TModel>(this TextBoxBuilder<TModel> builder)
        {
            return builder.HtmlAttributes(new { autofocus = true });
        }


I am finding that because the HTML attributes is cleared in your base implementation.. 

this.Component.HtmlAttributes.Clear();


it doesn't support an aggregation of attributes, but instead it's last-man-in.   that defeats the purpose of extensibility and effectively insists upon repetition and sort of brittle design that a copy/paste architecture results in.

I would believe it be completely acceptable to give the last-attribute-applied precedence and overwrite the value, but the reality is that we're talking about basic key/value pairs, and it shouldn't be difficult to merge the attributes as they are built.   best case, right now i have to implement my own derivation of the WidgetBuilderBase and implement an extension method off the WidgetFactory that bootstraps my functionality - certainly not a stretch, but more work than should probably be necessary.



   
    public virtual TBuilder HtmlAttributes(object attributes)
    {
      return this.HtmlAttributes(ObjectExtensions.ToDictionary(attributes));
    }

    public virtual TBuilder HtmlAttributes(IDictionary<string, object> attributes)
    {
      this.Component.HtmlAttributes.Clear();
      Kendo.Mvc.Extensions.DictionaryExtensions.Merge(this.Component.HtmlAttributes, attributes);
      return this as TBuilder;
    }
Declined
Last Updated: 25 May 2021 10:15 by ADMIN
Created by: Rob
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
4
Please add IntelliSense support for Angular directives in Visual Studio 2013 so this won't cause the 'green underline' error message.

<div kendo-grid="myGrid" k-data-source="customerDataSource"></div>
Declined
Last Updated: 25 May 2021 10:09 by ADMIN
There is no reason it should use the default maxJsonLength; especially since it is inaccessible to change.
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
Declined
Last Updated: 25 May 2021 10:08 by ADMIN
Created by: faris
Comments: 4
Category: UI for ASP.NET MVC
Type: Feature Request
6
Declined
Last Updated: 25 May 2021 10:05 by ADMIN
Created by: Robert
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
6
The Telerik MVC wrappers do not innovate at the same pace as Kendo UI Proper. They are missing attributes and actions that are available in the javascript versions, and it is plain to see that some features will be added when you guys "get around to it".

It would be so much better for customers if you guys would post the code to the Telerik organization on GitHub, and make it private, then allow customers to sign CLAs and have access to the source. That way, those of us (like myself) who have added new features and are maintaining their own branches internally can submit PRs to add our own value to a product we pay a heck of a lot of money for.

I personally would be able to close at least 5 requests on this forum from submitted pull requests, just in work I've already done.

Thanks for your consideration.