2023 Releases
This article lists the breaking or important changes in the 2023 releases of Telerik UI for ASP.NET Core. For the complete list of changes in the UI components, see the product release history.
Telerik UI for ASP.NET Core R3 2023
As of the 2023 R3 release, the font icons have been detached from the Kendo UI Themes CDN and have been extracted to a separate package. To continue using the font icons, reference the following stylesheet in your application:
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-font-icons/dist/index.css" />
The font icons are also available as an NPM package. For more information on how to install the NPM package, refer to the following documentation.
Telerik UI for ASP.NET Core R1 2023 SP2
FloatingActionButton
As part of the rendering unification of the components:
- The
Shape
configuration option and theshape
API method are now removed. - The element with class
k-fab-items
is moved inside the element with classk-fab-popup
.
Telerik UI for ASP.NET Core R1 2023 SP1
- Drop of the development and support of the LESS themes.
Unified Rendering
As of the 2023 R1 SP1 release, to unify their support for the new ThemeBuilder Pro, the following components have changed their rendering:
- Grid
- FileManager
- TreeList
- Gantt
- PivotGrid
- ListView
- ProgressBar
- Notification
- Upload
- Pager
- Toolbar
- Window
- Editor
The majority of the rendering changes can also be found within the existing test HTML specifications coming from the Kendo UI Themes Monorepo. The
tests
folder contains HTML specifications for all flavor of the components. The components follow the rendering strategy outlined in the specifications.
State Classes
All k-state-{name of state}
classes are transposed to k-{name of state}
. A list of all the updated state classes can be found in the existing State Classes article.
Animation Containers
- Animation containers are all components that represent or hold a popup, for example, the Grid filter menu, column and popup editor, Tooltip, SplitButton, DropDownList, and more.
- The
.k-animation-container
elements are now holding another wrapping element with the.k-child-animation-container
class.
PanelBar
The text and icon of the items are wrapped within two separate <span>
elements annotated with the .k-panelbar-item-text
and .k-panelbar-item-icon
classes.
Menu
The text of the items is wrapped within a standalone <span>
element annotated with the .k-menu-link-text
class.
DropDownList
The component's value is wrapped within a <span>
element annotated with the .k-input-value-text
class.
Grid
All rendering changes in the Grid are also applied to the FileManager, TreeList, Gantt, and PivotGrid as these components use the Grid internally.
-
The following command classes have been renamed:
Versions prior to 2023.1.314 Versions 2023.1.314 and later k-grid-edit
k-grid-edit
k-grid-update
k-grid-save-command
k-grid-cancel
k-grid-cancel-command
k-grid-cancel
k-grid-cancel-command
k-grid-delete
k-grid-remove-command
-
The following classes
table
-specific classes have been added to thetable
elements:Versions prior to 2023.1.314 Versions 2023.1.314 and later <table>
<table class="k-table">
<thead>
<thead class="k-table-thead">
<tbody>
<tbody class="k-table-tbody">
<tfoot>
<tfoot class="k-table-tfoot">
<th>
<th class="k-table-th">
<tr>
<tr class="k-table-row">
<tr> alt rows
<tr class="k-table-alt-row">
<td>
<td class="k-table-td">
Except for the popups, the sizing option now propagates to all elements inside the Grid. These include the table, toolbar, pager, buttons, inputs, pickers, chip lists, and more.
- The
.k-widget
class is now removed from the.k-grid
element. - The sorting icons will be replaced with their
.k-i-sort-asc-small
and.k-i-sort-desc-small
general names instead of their.k-i-sort-asc-sm
and.k-i-sort-desc-sm
aliases. -
The sorting icon is now wrapped in a
<span>
element:<span class="k-sort-icon"> <span class="k-icon k-i-sort-asc-small"></span> </span>
-
The headings of the Grid are now updated with the new header rendering:
<!--- Default header cell ---> <th class="k-header"> <a class="k-link"> ProductName </a> </th> <!--- Header cell with sorting---> <th class="k-header k-sorted"> <a class="k-link"> ProductName <span class="k-icon k-i-sort-asc-sm"></span> </a> </th> <!--- Header cell with filter menu---> <th class="k-header k-filterable"> <a class="k-grid-filter"> <span class="k-icon k-i-filter"></span> </a> <a class="k-link"> ProductName </a> </th> <!--- Header cell with column menu---> <th class="k-header"> <a class="k-header-column-menu"> <span class="k-icon k-i-more-vertical"></span> </a> <a class="k-link"> ProductName </a> </th>
<!--- Default header cell ---> <th class="k-header"> <span class="k-cell-inner"> <span class="k-link"> <span class="k-column-title"> ProductName </span> </span> </span> </th> <!--- Header cell with sorting---> <th class="k-header k-sorted"> <span class="k-cell-inner"> <span class="k-link"> <span class="k-column-title"> ProductName </span> <span class="k-sort-icon"> <span class="k-icon k-i-sort-asc-small"></span> </span> </span> </span> </th> <!--- Header cell with filter menu---> <th class="k-header k-filterable"> <span class="k-cell-inner"> <span class="k-link"> <span class="k-column-title"> ProductName </span> </span> <a class="k-grid-filter-menu k-grid-header-menu"><Icon name="filter" /></a> </span> </th> <!--- Header cell with column menu---> <th class="k-header k-filterable"> <span class="k-cell-inner"> <span class="k-link"> <span class="k-column-title"> ProductName </span> </span> <a class="k-grid-header-menu k-grid-column-menu" href="#"><Icon name="more-vertical" /></a> </span> </th>
By default, the table elements inside the Grid are medium-sized. The
.k-table-md
class is added to the.k-table
element.The
.k-grid-header-table
,.k-grid-table
, and.k-grid-footer-table
Grid-specific classes are now added to the header, body, and footer tables.The Grid uses internally the Toolbar component and follows its accessibility specification. The ToolBar is a single tab stop component and when the
Navigatable()
option is enabled, pressing theTab
key navigates to and from the Toolbar. When focused, navigating to the previous or next focusable element is achieved via the arrow keys.
TabStrip
The k-floatwrap
class has been removed from the TabStrip.
ListView
- The
.k-pager-wrap
class is now removed from the.k-pager
element. - The
.k-listview-item
wrapper is now added to the item templates. - The
.k-listview-item
class is now removed from the item template children. - The
.k-item
class is now replaced with.k-progressbar-chunk
.
ProgressBar
- The
.k-widget
class is now removed. - A
.k-chunk-progressbar
class has been added to the Chunk ProgressBar. - The
.k-progressbar-chunks
class has been added to the<ul>
element. - An additional
.k-progressbar-value
class is now added to the<div>
element with the.k-selected
class in the default ProgressBar.
CheckBox
The CheckBox is wrapped in a <span>
element annotated with the .k-checkbox-wrap
class.
Notification
- The
.k-widget
class is now removed. - The
k-notification-wrap
class has also been removed. -
The closable
<a class="k-icon k-i-close"></a>
notification icon is now replaced with a<span>
element and the icon class.k-i-close
name has been changed to.k-i-x
.<span class="k-icon k-i-x">...</span>
-
A
.k-notification-actions
container added wrapping to the closable icon.<span class="k-notification-actions"> <span class="k-notification-action k-notification-close-action"> <span class="k-icon k-i-x">...</span> </span> ... </span>
Button
The .k-button-rectangle
class is now removed.
Upload
-
The Upload button and input are no longer nested but are on the same level, wrapped inside a
<div>
element.<div class="k-button k-upload-button" aria-label="Select files..."> <input name="files" id="upload-input"> <span>Select files...</span> </div>
<div class="k-upload-button-wrap"> <label for="upload-input"> <!-->optional element<--> <button class="k-upload-button k-button k-button-md k-button-solid k-button-solid-base k-rounded-md"> <span class="k-button-text">Select files...</span> </button> </label> <input id="upload-input"> </div>
-
The following classes related to the Telerik UI for ASP.NET Core Upload have been renamed:
Versions prior to 2023.1.314 Versions 2023.1.314 and later k-file-group
k-file-icon
k-file-name-size-wrap
k-file-info
k-file-name-invalid
k-file-name
k-file-information
k-file-summary
k-file-group-wrapper
k-file-icon-wrapper
k-file-invalid-group-wrapper
k-file-icon-wrapper
k-multiple-files-invalid-group-wrapper
k-file-icon-wrapper
k-dropzone-hover
k-hover
k-dropzone-hovered
k-hover
The
.k-widget
class is now removed from the.k-upload
element.- All
<em>
and<strong>
elements have been replaced withspan
or<div>
elements. - A
.k-upload-dropzone
class has been added to the.k-dropzone
element. - The
.k-upload-status-total
class has been removed from the.k-upload-status
element. - The
.k-validation-icon
class is now removed from the.upload-status
icon. - The
.k-file-error
class has been added to.k-file-invalid
. -
.k-file-single
and.k-file-multiple
wrapper elements have been added inside the.k-file
element for single and multiple files respectively. - The
.k-file-name-invalid
class has been removed from the.k-file-name
element. - The
.k-text-success
and.k-text-error
classes have been removed from the.k-validation-message
element. - The Upload action buttons are no longer wrapped in a
.k-upload-status
class but in the.k-upload-actions
class. - The progress bar is now replaced with the ProgressBar component without visible labels.
Pager
- The
.k-widget
class is now removed from the.k-pager
element. - The
.k-pager-numbers
element is now a<div>
element. - The
<a class="k-link k-page-nav"></a>
navigation buttons have been replaced with<button class="k-pager-nav k-button k-button-{size} k-button-flat k-button-flat-base k-icon-button">...</button>
flat buttons. - The
<span class="k-link></span>
page numbers are now replaced with<button class="k-button k-button-{size} k-button-flat k-button-flat-primary">...</button>
flat primary buttons. - The
.k-link
class is now removed from the component. - The
.k-pager-wrap
class selector is now removed. - The
.k-pager-mobile-md
and.k-pager-mobile-sm
classes are added when internal Pager elements are shown or hidden.
Toolbar
- The
.k-widget
class is now removed from the.k-toolbar
element. - The
.k-toolbar-resizable
class is added when the Toolbar is responsive. - The
.k-overflow-anchor
class has been replaced with the.k-toolbar-overflow-button
class.
Window
- The
.k-window-titleless
class is now removed. - The
.k-window-actions
class in the title bar has been replaced with.k-window-titlebar-actions
. - The
.k-window-buttongroup
and.k-window-buttons
classes are replaced with.k-window-actions
. - The
.k-window-titlebar-action
class is added to action buttons inside the title bar. - The
.k-dialog-{something}
classes are removed from the component.
Dialog
- A
.k-window
class is now added to the component. - The
.k-dialog-actions
class in the title bar has been replaced with the.k-dialog-titlebar-actions
class. - The
.k-window-titlebar-action
and.k-dialog-titlebar-action
classes have been added to the action buttons. - The
.k-dialog-buttongroup
and.k-dialog-buttons
classes are now replaced with.k-dialog-actions
. -
A new
.k-dialog-{value}
theme color property has been added to the.k-window
element. It supports theprimary
,dark
, andlight
theme colors.<!-- Primary themeColor --> <div class="k-window k-dialog k-dialog-primary">...</div> <!-- Dark themeColor --> <div class="k-window k-dialog k-dialog-dark">...</div> <!-- Light themeColor --> <div class="k-window k-dialog k-dialog-light">...</div>
Editor
- The
table
element has been replaced with a<div>
element. - The toolbar is no longer wrapped inside the
.k-editor-toolbar-wrap
element. - The toolbar is no longer a
<ul>
with<li>
elements, but a Toolbar component. - The
.k-editor-toolbar
class is now added to the toolbar. - The
.k-resizable
class has been replaced with the.k-editor-resizable
one.
Functional changes:
- The Editor no longer allows the use of togglable and non-togglable buttons in the same ButtonGroup of its ToolBar. If such a configuration is present, all buttons will be rendered as simple (non-togglable) buttons.
Editor Popup
- Instead of the Dialog component, all Editor popups now use the Window component.
- The
.k-editor-window
has been added to all popups. - All inputs in popups have been replaced with the TextBox, NumericTextBox, and other respective components.
- Instead of the
.k-edit-form-container
,.k-edit-form-content
,.k-edit-label classes
, and similar classe, the Form component is now used inside the popups. - Action buttons have been moved outside the form.
- The
.k-editor-table-wizard-dialog
class has been replaced with the.k-editor-table-wizard-window
class.
Telerik UI for ASP.NET Core R1 2023
Telerik.Web.PDF
As of the R1 2023 release, the Load
method of the Telerik.Web.PDF
assembly is obsolete. The method was used to read from the file system. For security reasons, loading options should be limited to byte[]
and Stream
. As of R1 2023, the developers are responsible for reading from the file system and passing a stream to the loaded document.
ToolBar
-
The tools in the ToolBar are actual component instances instead of ToolBar items. As a result, the
click
andtoggle
event argument objects no longer hold a reference to the ToolBar item (e.item
). From that release on, the component instance of the tool can be taken by using thekendo.widgetInstance()
method. When rendered in theOverflowMenu
or the popup of a DropDownButton or a SplitButton those tools are menu items. Hence, they are not Kendo UI controls. A reference to the jQuery elements is still available in those cases in thee.target
event argument in the ToolBar'sClick
andToggle
event handlers.<script> function onClick(e) { console.log("click:"); console.log(kendo.widgetInstance(e.target)); } function onToggle(e) { console.log("toggle: ", e.checked); console.log(kendo.widgetInstance(e.target)); } </script>
The ToolBar buttons will always be rendered as
<button>
elements (instead of<a>
) unless they have aurl
configured in their options. If aurl
is present, those will be rendered as links (<a>
).- The ToolBar won't allow you to use togglable and non-togglable buttons in the same ButtonGroup. If such a configuration is present, all buttons will be rendered and behave as simple (non-togglable) buttons.
- The ToolBar Overflow menu will open upon each of its button clicks. That is the behavior of the ContextMenu component used in that scenario.