New to Telerik UI for ASP.NET MVC? Download free 30-day trial

2024 Releases

This article lists the breaking or important changes in the 2024 releases of Telerik UI for ASP.NET MVC.

Telerik UI for ASP.NET MVC Q2 2024

Target Framework

As of the Q2 2024 release, Telerik UI for ASP.NET MVC supports .NET Framework 4.6.2 and later versions. You can update to a supported .NET Framework version.

Telerik.Web.Captcha As of the Q2 2024 release, the Telerik.Web.Captcha package targets .NET Framework 4.6.2

Telerik.Web.Spreadsheet As of the Q2 2024 release, the Telerik.Web.Spreadsheet package targets .NET Framework 4.6.2

Chart

The default Theme configuration for the Telerik UI for ASP.NET MVC Charts is changed to sass. By default, the Chart theme will now match the loaded Sass-based theme.

Telerik UI for ASP.NET MVC Q1 2024

Deprecated Controllers

As of the Q1 2024 release, the following controllers will be deprecated.

  • FileManager—ContentProviderController
  • Editor—EditorImageBrowserController, FileBrowserController, EditorFileBrowserController

Deprecated Interfaces

As of the Q1 2024 release, the following interfaces will be deprecated.

  • FileManager—IContentProviderController
  • Editor—IFileBrowserController, IImageBrowserController

Deprecated APIs

As of the Q1 2024 release, the following APIs will be deprecated.

  • ChartSeriesBuilderBase.GroupNameTemplate

        .Series(series => series.Bar(s => s.Sales)
            .Name("Sales")
            .GroupNameTemplate("#= series.name # for #= group.field #   #=    group.value #")
        )
    
        .Series(series => series.Bar(s => s.Sales)
            .Name("#= series.name # for #= group.field #   #=    group.value #")
        )
    
  • EditorMessages.FormatBlock, EditorMessages.Styles

        .Messages(messages => messages
            .FormatBlock("Format")
            .Styles("Style")
        )
    
        .Messages(messages => messages
               .Formatting("Format")
               .Style("Style")
        )
    
In this article