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: 05 Jul 2022 08:20 by Holger
Created by: Holger
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
I have the following scenario:
I am using an ASP.NET MVC application with WebPack and Javascript modules. To initialize the Kendo components I embed the deferred scripts in a javascript function, which is then called by the JS view model. 

My problem is: Kendo registers the initialization scripts through the SyncReady function, which is then called asynchronously on the document.ready event. But there is no way to configure the controls after initialization in the javascript. So e.g. an OnAfterInit event or similar. For controls like the TileLayout this is very annoying, because no user gets the idea to click a button to load the "right" layout. But surely the other controls would also benefit from such an event. Also a global entry point after processing "syncReady" would be useful.
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

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!

Completed
Last Updated: 06 Jun 2022 22:29 by ADMIN
Created by: Cedric
Comments: 0
Category: UI for ASP.NET MVC
Type: Bug Report
0

Passing a dynamic object to a template column builder throws an exception:

c.Template(m => { })
.ClientTemplate("<input type='checkbox' value='#= Id #' />")
.Visible(ViewBag.Can.Edit);

Using an explicit cast doesn't throw the error:

c.Template(m => { })
.ClientTemplate("<input type='checkbox' value='#= Id #' />")
.Visible((bool)ViewBag.Can.Edit);

Completed
Last Updated: 06 Jun 2022 10:09 by ADMIN
Release 2022.R2.SP.next

Bug report

A regression introduced in R1 2022.

Reproduction of the problem

Reproducible with the RadioButton and RadioButtonFor helpers.

@Html.Kendo().RadioButton().Name("HealthA1").Label("Yes").Value(true).HtmlAttributes(new { id = "HealthA1_True" })
@Html.Kendo().RadioButton().Name("HealthA1").Label("No").Value(false).HtmlAttributes(new { id = "HealthA1_False" })

Current behavior

The rendering is broken: no label element is rendered, the Kendo classes are not applied to the input.

Expected/desired behavior

The RadioButton renders properly.

Environment

  • Kendo UI version: 2022.1.301
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 25 May 2022 11:36 by Chris Edmonds
Created by: Chris Edmonds
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
3
Create a Telerik.Mvc.Export NuGet package for UI for ASP.NET MVC
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: 06 May 2022 12:40 by Nicola
Created by: Peter
Comments: 2
Category: UI for ASP.NET MVC
Type: Feature Request
4
The Readonly() property is only available for the Switch control.  Please make available the Readonly() property for the TextBox, ComboBox, DropDownList and MultiSelect as well.
Unplanned
Last Updated: 11 Apr 2022 16:50 by ADMIN
Created by: Jeff
Comments: 1
Category: UI for ASP.NET MVC
Type: Bug Report
0

If I specify "SortMode.Mixed" for a Grid's "SortMode" (via the .Sortable fluent method), the sort mode in the JavaScript initializer is set to "multiple" instead. This can even be seen on the MVC Demo page here: https://demos.telerik.com/aspnet-mvc/grid/sorting (the "mixed" demo behaves just like "multiple").

In the Kendo MVC source code for 2022.1.301, the GridSortableSettings.Serialize method appears to use the following logic:

if (SortMode != GridSortMode.SingleColumn)
{
    json["mode"] = "multiple";
}

Unplanned
Last Updated: 29 Mar 2022 17:57 by Brandon
Created by: Brandon
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1

Hi Team,

I would like to request the functionality to configure the FilterDescriptor's Member as a List rather than a field.  

Thank you!

Unplanned
Last Updated: 22 Mar 2022 07:56 by ADMIN
Created by: Imported User
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
2
Ability to write c# code or use model property value instead of just bool value to hide or show a cell(.hidden())
Unplanned
Last Updated: 17 Mar 2022 11:28 by ADMIN

Hello, 

During the completion of my ticket (1556993) it was suggested I request a feature and explain its purpose.

The a large grants accounting system I've built, management has requested the ability to control access to, and apply permission upon pages and features within the site.

For example, in the Federal Grants page with a grid using popup template editor, I need to limit display of the default create button, while displaying the rest of the toolbar.

Similarly, I to limit display of the edit and delete buttons individually.

I'm applying such constraints using custom roles with user membership in each roles.

 

 

Declined
Last Updated: 15 Feb 2022 15:59 by ADMIN
Created by: John
Comments: 6
Category: UI for ASP.NET MVC
Type: Bug Report
0

With the latest 2022 release, the grid toolbar seems to be rendering buttons incorrectly.  It is generating them with k-button and k-button-icontext classes only on them.  I don't 100% know this is wrong, but i expected them to render with k-button-solid-base and k-rounded-md classes, and i'm pretty sure i saw docs saying the icontext is not used anymore.

 

Note:  this is about the mvc wrapper.

 

Completed
Last Updated: 14 Feb 2022 10:54 by ADMIN
Release 2022.2
Created by: Sean
Comments: 3
Category: UI for ASP.NET MVC
Type: Bug Report
0

The columns widths do not match the header and are slightly off, and after enough columns it is half a column out.

Completed
Last Updated: 08 Feb 2022 15:52 by ADMIN
Release 2022.R1.SP.next
Created by: Manu
Comments: 0
Category: UI for ASP.NET MVC
Type: Bug Report
0

Bug report

Regression introduced in R1 2022.

Reproduction of the problem

Reproducible in the demo: https://demos.telerik.com/aspnet-mvc/grid/search-panel

Current behavior

There is a difference in the rendering of the search panel.

MVC:

<span class="k-textbox k-grid-search k-display-flex">
    <input autocomplete="off" class="k-input" placeholder="Search..." title="Search..." type="text">
    <span class="k-input-icon">
       <span class="k-icon k-i-search"></span>
    </span>
</span>

Kendo UI for jQuery and Core:

<span class="k-searchbox k-input k-input-md k-rounded-md k-input-solid k-grid-search">
    <span class="k-input-icon k-icon k-i-search"></span>
    <input autocomplete="off" placeholder="Search..." title="Search..." class="k-input-inner">
</span>

As a result, in MVC the search panel's magnifying glass is displayed outside the input.

Additionally, the search panel's appearance in Kendo UI for jQuery and Core is different than the one in the previous versions. In R3 2021, the input is positioned on the left hand side of the Grid's toolbar and the magnifying glass appears at the right end of the input. In R2 2022, the input is positioned on the right side of the toolbar and the magnifying glass is displayed at the beginning of the input.
R3 2021 dojo
R1 2022 dojo

Expected/desired behavior

Positioning of the input within the toolbar and the magnifying glass icon within the input, to be as in R3 2021.

Environment

  • Kendo UI version: 2022.1.119
  • jQuery version: x.y
  • Browser: [all]
Declined
Last Updated: 04 Feb 2022 08:46 by ADMIN

I'm not sure if this is a bug but if you leave the size off of a column, it stretches to fill the remaining area.  However I discovered that this does NOT happen if you lock one of your columns.  If you do this, the column doesn't render at all.

 

Completed
Last Updated: 02 Feb 2022 10:45 by ADMIN
Created by: Holger
Comments: 1
Category: UI for ASP.NET MVC
Type: Bug Report
0

Editor => Imagebrowser path for subfolder is url-encoded

if a picture from a subfolder is selected, the generated image-url is encoded for the subpath

 

encoding may be usefull, but not for the path separator

Unplanned
Last Updated: 27 Jan 2022 08:39 by ADMIN

Hello community,

We would like to have the option / ability to apply accent insensitive filtering/searching for every control gives the ability to control, like grids, treelists, dropdownlists e.t.c.

For example, when using grid column filtering, if we have a data entry like 'Μόδεστος' in a column, we could retrieve this data entry by giving the following terms:

'μοδεσ' should return data entry, now doesn't

'μοδεστος' should return data entry, now doesn't

'ΜΟΔΕΣ' should return data entry, now doesn't

This case I am giving, takes cares only for " ΄ "  accent diacritic, but should apply for all diacritic, e.g 'προϊόντων', should return by searching for term like 'προιον'

I believe that that should be the default case, such as now ignoreCase does. 

Thank you,

AGGELIKI

 

Completed
Last Updated: 27 Jan 2022 08:20 by ADMIN
Created by: Sanjay
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
46
Create a breadcrumb trail like horizontal navigation on top of web page below headers which will provide a hierarchical site structure.

Typical breadcrumbs looks like:
Home page > Section page > Subsection page