}
@@ -131,9 +136,9 @@
List NavigablePages { get; set; } = new List
{
- new DrawerItem { Text = "Home", Url = "/", Icon = "home" },
- new DrawerItem { Text = "Counter", Url = "counter", Icon = "plus-outline" },
- new DrawerItem { Text = "FetchData", Url = "fetchdata", Icon = "grid" }
+ new DrawerItem { Text = "Home", Url = "/", Icon = SvgIcon.Home },
+ new DrawerItem { Text = "Counter", Url = "counter", Icon = SvgIcon.PlusOutline },
+ new DrawerItem { Text = "FetchData", Url = "fetchdata", Icon = SvgIcon.Grid }
};
protected override void OnInitialized()
@@ -179,7 +184,7 @@
{
public string Text { get; set; }
public string Url { get; set; }
- public string Icon { get; set; }
+ public ISvgIcon Icon { get; set; }
public bool IsSeparator { get; set; }
}
}
\ No newline at end of file
diff --git a/drawer/template/template/template.csproj b/drawer/template/template/template.csproj
index 5c4ab100..c7fcfc9b 100644
--- a/drawer/template/template/template.csproj
+++ b/drawer/template/template/template.csproj
@@ -1,11 +1,13 @@
-
+
- netcoreapp3.1
+ net8.0
-
+
+
+
diff --git a/drawer/two-drawers/TwoDrawers/Shared/MainLayout.razor b/drawer/two-drawers/TwoDrawers/Shared/MainLayout.razor
index b36127b3..ac845dde 100644
--- a/drawer/two-drawers/TwoDrawers/Shared/MainLayout.razor
+++ b/drawer/two-drawers/TwoDrawers/Shared/MainLayout.razor
@@ -16,7 +16,9 @@
@* First, the Overlay mode drawer as it positions itself absolutely and so it should be as high in the DOM as possible
in order to not be limited by the rules and positions of its parents *@
-
+ @using Telerik.SvgIcons
+
+
@* The nested drawer is the Push drawer - the CSS rule above reduces its z-index so it does not show up above the overlay of the other *@
@@ -29,8 +31,8 @@
@* Here begins the actual content - for example, we start with buttons to toggle the drawers and the @Body later *@
- Toggle LEFT drawer
- Toggle RIGHT drawer
+ Toggle LEFT drawer
+ Toggle RIGHT drawer
Selected Item: @SelectedItem?.Text
@@ -51,21 +53,21 @@
// the left (Push) drawer goes to the counter and fetch data pages
IEnumerable Data { get; set; } = new List
{
- new DrawerItem { Text = "Counter", Icon = "plus", Url = "counter"},
- new DrawerItem { Text = "FetchData", Icon = "grid-layout", Url = "fetchdata"},
+ new DrawerItem { Text = "Counter", Icon = SvgIcon.Plus, Url = "counter"},
+ new DrawerItem { Text = "FetchData", Icon = SvgIcon.GridLayout, Url = "fetchdata"},
};
//the right (overlay) drawer always goes to the home page for brevity and simplicity
IEnumerable RightItems { get; set; } = new List
{
- new DrawerItem { Text = "First", Icon = "minus-outline", Url= "/"},
- new DrawerItem { Text = "Second", Icon = "minus-circle", Url = "/"},
+ new DrawerItem { Text = "First", Icon = SvgIcon.MinusOutline, Url= "/"},
+ new DrawerItem { Text = "Second", Icon = SvgIcon.MinusCircle, Url = "/"},
};
public class DrawerItem
{
public string Text { get; set; }
- public string Icon { get; set; }
+ public Telerik.SvgIcons.ISvgIcon Icon { get; set; }
public string Url { get; set; }
}
}
\ No newline at end of file
diff --git a/drawer/two-drawers/TwoDrawers/TwoDrawers.csproj b/drawer/two-drawers/TwoDrawers/TwoDrawers.csproj
index 5c4ab100..c7fcfc9b 100644
--- a/drawer/two-drawers/TwoDrawers/TwoDrawers.csproj
+++ b/drawer/two-drawers/TwoDrawers/TwoDrawers.csproj
@@ -1,11 +1,13 @@
-
+
- netcoreapp3.1
+ net8.0
-
+
+
+
diff --git a/editor/ImportExport/EditorImportExport/EditorImportExport.csproj b/editor/ImportExport/EditorImportExport/EditorImportExport.csproj
index 72e536ab..501d5933 100644
--- a/editor/ImportExport/EditorImportExport/EditorImportExport.csproj
+++ b/editor/ImportExport/EditorImportExport/EditorImportExport.csproj
@@ -1,22 +1,25 @@
- net6.0
+ net8.0enableenable
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/editor/ImportExport/EditorImportExport/Pages/Index.razor b/editor/ImportExport/EditorImportExport/Pages/Index.razor
index 626404d7..644406ed 100644
--- a/editor/ImportExport/EditorImportExport/Pages/Index.razor
+++ b/editor/ImportExport/EditorImportExport/Pages/Index.razor
@@ -1,7 +1,10 @@
@page "/"
@using EditorImportExport.Data
+@using Telerik.Blazor
+@using Telerik.Blazor.Components
@using Telerik.Blazor.Components.Editor
+@using Telerik.SvgIcons
@inject FileConverter fileConverter
diff --git a/editor/Markdown/Markdown/Markdown.csproj b/editor/Markdown/Markdown/Markdown.csproj
index 65ead426..f9b0b2f4 100644
--- a/editor/Markdown/Markdown/Markdown.csproj
+++ b/editor/Markdown/Markdown/Markdown.csproj
@@ -1,13 +1,10 @@
-
-
+
- netcoreapp3.1
+ net8.0
-
-
-
-
+
+
+
-
-
+
\ No newline at end of file
diff --git a/editor/Markdown/Markdown/Pages/ViewMdTool.razor b/editor/Markdown/Markdown/Pages/ViewMdTool.razor
index 16edcf3e..95a070be 100644
--- a/editor/Markdown/Markdown/Pages/ViewMdTool.razor
+++ b/editor/Markdown/Markdown/Pages/ViewMdTool.razor
@@ -1,4 +1,5 @@
-View MD
+@using Telerik.SvgIcons
+View MDView and Edit the Raw Markdown
diff --git a/fileselect/fileselect-in-grid-row/fileselect-in-grid-row/fileselect_in_grid_row.csproj b/fileselect/fileselect-in-grid-row/fileselect-in-grid-row/fileselect_in_grid_row.csproj
index b4e53d50..acff9728 100644
--- a/fileselect/fileselect-in-grid-row/fileselect-in-grid-row/fileselect_in_grid_row.csproj
+++ b/fileselect/fileselect-in-grid-row/fileselect-in-grid-row/fileselect_in_grid_row.csproj
@@ -1,11 +1,13 @@
-
+
- netcoreapp3.1
+ net8.0
-
+
+
+
diff --git a/form/remote-validation/WasmCustomValidation/Client/Pages/Index.razor b/form/remote-validation/WasmCustomValidation/Client/Pages/Index.razor
index c385c9f7..cc3f7501 100644
--- a/form/remote-validation/WasmCustomValidation/Client/Pages/Index.razor
+++ b/form/remote-validation/WasmCustomValidation/Client/Pages/Index.razor
@@ -1,4 +1,5 @@
@page "/"
+@using Telerik.Blazor
@using System.Net
@using System.Net.Http.Json
@@ -34,7 +35,7 @@ This sample uses a Notification component to show the error message to supplemen
void ShowErrorNotification(string message)
{
- Notification.Show(new NotificationModel { CloseAfter = 0, Text = message, ThemeColor = Telerik.Blazor.ThemeColors.Error });
+ Notification.Show(new NotificationModel { CloseAfter = 0, Text = message, ThemeColor = ThemeConstants.Notification.ThemeColor.Error });
}
private async Task HandleValidSubmit(EditContext editContext)
diff --git a/form/remote-validation/WasmCustomValidation/Client/WasmCustomValidation.Client.csproj b/form/remote-validation/WasmCustomValidation/Client/WasmCustomValidation.Client.csproj
index 8600087d..9cc38a1b 100644
--- a/form/remote-validation/WasmCustomValidation/Client/WasmCustomValidation.Client.csproj
+++ b/form/remote-validation/WasmCustomValidation/Client/WasmCustomValidation.Client.csproj
@@ -1,16 +1,15 @@
-
- net5.0
+ net8.0
-
-
-
-
-
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/form/remote-validation/WasmCustomValidation/Server/WasmCustomValidation.Server.csproj b/form/remote-validation/WasmCustomValidation/Server/WasmCustomValidation.Server.csproj
index 56c656c3..a1aeca45 100644
--- a/form/remote-validation/WasmCustomValidation/Server/WasmCustomValidation.Server.csproj
+++ b/form/remote-validation/WasmCustomValidation/Server/WasmCustomValidation.Server.csproj
@@ -1,18 +1,14 @@
-
-
+
- net5.0
+ net8.0
-
-
-
-
+
+
+
-
-
-
+
\ No newline at end of file
diff --git a/form/remote-validation/WasmCustomValidation/Shared/WasmCustomValidation.Shared.csproj b/form/remote-validation/WasmCustomValidation/Shared/WasmCustomValidation.Shared.csproj
index c71dd9e1..b432ed27 100644
--- a/form/remote-validation/WasmCustomValidation/Shared/WasmCustomValidation.Shared.csproj
+++ b/form/remote-validation/WasmCustomValidation/Shared/WasmCustomValidation.Shared.csproj
@@ -1,11 +1,8 @@
-
-
+
- netstandard2.1
+ net8.0
-
-
+
-
-
+
\ No newline at end of file
diff --git a/grid/adjust-height-with-browser/AdjustHeightWithBrowser.csproj b/grid/adjust-height-with-browser/AdjustHeightWithBrowser.csproj
index bd47af81..062a5041 100644
--- a/grid/adjust-height-with-browser/AdjustHeightWithBrowser.csproj
+++ b/grid/adjust-height-with-browser/AdjustHeightWithBrowser.csproj
@@ -1,12 +1,9 @@
-
-
+
- netcoreapp3.1
+ net8.0
-
-
-
+
+
-
-
+
\ No newline at end of file
diff --git a/grid/adjust-height-with-browser/README.md b/grid/adjust-height-with-browser/README.md
index 33f83260..61042dc2 100644
--- a/grid/adjust-height-with-browser/README.md
+++ b/grid/adjust-height-with-browser/README.md
@@ -1,7 +1,8 @@
# Change page size according to available height; hide columns based on screen size
> This sample app is mostly obsolete and no longer maintained. The up-to-date Telerik documentation resources and examples are available at:
->
+> * [Grid Adaptive Mode](https://demos.telerik.com/blazor-ui/grid/adaptive)
+> * [Grid Adaptive Mode Stacked Columns](https://www.telerik.com/blazor-ui/documentation/components/grid/columns/stacked)
> * [Adjust Grid Height to Match the Browser Viewport Height](https://docs.telerik.com/blazor-ui/knowledge-base/grid-adjust-height-with-browser)
> * [Hide or Show Grid Columns on Browser Window Resize](https://docs.telerik.com/blazor-ui/components/mediaquery/integration)
> * [Scroll to Selected Grid Row](https://docs.telerik.com/blazor-ui/knowledge-base/grid-scroll-to-selected-row)
diff --git a/grid/custom-popup-form/Pages/Index.razor b/grid/custom-popup-form/Pages/Index.razor
index 872a0b2d..3f65c512 100644
--- a/grid/custom-popup-form/Pages/Index.razor
+++ b/grid/custom-popup-form/Pages/Index.razor
@@ -6,7 +6,7 @@
- Edit
+ Edit
@@ -19,7 +19,7 @@
- Add Employee
+ Add Employee
@@ -46,8 +46,8 @@
- Save
- Cancel
+ Save
+ Cancel
diff --git a/grid/custom-popup-form/Pages/SeparateComponent.razor b/grid/custom-popup-form/Pages/SeparateComponent.razor
index b4d51f0e..de39574a 100644
--- a/grid/custom-popup-form/Pages/SeparateComponent.razor
+++ b/grid/custom-popup-form/Pages/SeparateComponent.razor
@@ -7,7 +7,7 @@
- Edit
+ Edit
@@ -20,7 +20,7 @@
- Add Employee
+ Add Employee
diff --git a/grid/custom-popup-form/Shared/CustomEditForm.razor b/grid/custom-popup-form/Shared/CustomEditForm.razor
index 3d4b4cf5..2023fa14 100644
--- a/grid/custom-popup-form/Shared/CustomEditForm.razor
+++ b/grid/custom-popup-form/Shared/CustomEditForm.razor
@@ -44,8 +44,8 @@
- Save
- Cancel
+ Save
+ Cancel
diff --git a/grid/custom-popup-form/_Imports.razor b/grid/custom-popup-form/_Imports.razor
index 25503a2e..d24a544d 100644
--- a/grid/custom-popup-form/_Imports.razor
+++ b/grid/custom-popup-form/_Imports.razor
@@ -8,4 +8,5 @@
@using custom_popup_form
@using custom_popup_form.Shared
@using Telerik.Blazor
-@using Telerik.Blazor.Components
\ No newline at end of file
+@using Telerik.Blazor.Components
+@using Telerik.SvgIcons
\ No newline at end of file
diff --git a/grid/custom-popup-form/custom_popup_form.csproj b/grid/custom-popup-form/custom_popup_form.csproj
index a3beda0a..c7fcfc9b 100644
--- a/grid/custom-popup-form/custom_popup_form.csproj
+++ b/grid/custom-popup-form/custom_popup_form.csproj
@@ -1,11 +1,13 @@
-
+
- net5.0
+ net8.0
-
+
+
+
diff --git a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/Pages/Index.razor b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/Pages/Index.razor
index f57e7ce9..7ba54f1a 100644
--- a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/Pages/Index.razor
+++ b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/Pages/Index.razor
@@ -3,6 +3,8 @@
@using System.Net.Http.Json
@using RemoteValidationInGridEditorTemplate.Shared
@inject HttpClient Http
+@using Telerik.Blazor
+@using Telerik.SvgIcons
Try to Update an item with an empty "Name" field.
@@ -36,8 +38,8 @@ This sample uses a Notification component to show the error message to supplemen
- Update
- Edit
+ Update
+ Edit
@@ -59,7 +61,7 @@ This sample uses a Notification component to show the error message to supplemen
void ShowErrorNotification(string message)
{
- Notification.Show(new NotificationModel { CloseAfter = 0, Text = message, ThemeColor = Telerik.Blazor.ThemeColors.Error });
+ Notification.Show(new NotificationModel { CloseAfter = 0, Text = message, ThemeColor = ThemeConstants.Notification.ThemeColor.Error });
}
public async Task UpdateHandler(GridCommandEventArgs args)
diff --git a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/RemoteValidationInGridEditorTemplate.Client.csproj b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/RemoteValidationInGridEditorTemplate.Client.csproj
index 808215fe..bae92cd8 100644
--- a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/RemoteValidationInGridEditorTemplate.Client.csproj
+++ b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Client/RemoteValidationInGridEditorTemplate.Client.csproj
@@ -1,15 +1,14 @@
-
- net5.0
+ net8.0
-
-
-
-
+
+
+
+
-
+
\ No newline at end of file
diff --git a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Server/RemoteValidationInGridEditorTemplate.Server.csproj b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Server/RemoteValidationInGridEditorTemplate.Server.csproj
index 959383e7..dfc26a9b 100644
--- a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Server/RemoteValidationInGridEditorTemplate.Server.csproj
+++ b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Server/RemoteValidationInGridEditorTemplate.Server.csproj
@@ -1,16 +1,12 @@
-
-
+
- net5.0
+ net8.0
-
-
+
-
-
-
+
\ No newline at end of file
diff --git a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Shared/RemoteValidationInGridEditorTemplate.Shared.csproj b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Shared/RemoteValidationInGridEditorTemplate.Shared.csproj
index c71dd9e1..b432ed27 100644
--- a/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Shared/RemoteValidationInGridEditorTemplate.Shared.csproj
+++ b/grid/custom-validation-in-editortemplate/RemoteValidationInGridEditorTemplate/Shared/RemoteValidationInGridEditorTemplate.Shared.csproj
@@ -1,11 +1,8 @@
-
-
+
- netstandard2.1
+ net8.0
-
-
+
-
-
+
\ No newline at end of file
diff --git a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/Pages/Products.razor b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/Pages/Products.razor
index 15440cff..0bb2082c 100644
--- a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/Pages/Products.razor
+++ b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/Pages/Products.razor
@@ -15,9 +15,9 @@
@bind-PageSize="PageSize"
@ref="@Grid">
- Refresh
- Export .xlsx
- Export .csv
+ Refresh
+ Export .xlsx
+ Export .csv
diff --git a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/TelerikBlazorGrid-Dapper.Blazor.csproj b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/TelerikBlazorGrid-Dapper.Blazor.csproj
index cfd4c3e4..daf8337f 100644
--- a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/TelerikBlazorGrid-Dapper.Blazor.csproj
+++ b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/TelerikBlazorGrid-Dapper.Blazor.csproj
@@ -1,15 +1,15 @@
- net5.0
+ net8.0TelerikBlazorGrid_Dapper.Blazor1.0.0.101.0.0.10
-
-
+
+
@@ -21,3 +21,6 @@
+
+
+
diff --git a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/_Imports.razor b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/_Imports.razor
index 91d17dfc..6ae4f47b 100644
--- a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/_Imports.razor
+++ b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.Blazor/_Imports.razor
@@ -10,5 +10,6 @@
@using TelerikBlazorGrid_Dapper.Blazor.Shared
@using Telerik.Blazor
@using Telerik.Blazor.Components
+@using Telerik.SvgIcons
@using TelerikBlazorGrid_Dapper.DataAccess.Services
@using TelerikBlazorGrid_Dapper.DataAccess.Models
\ No newline at end of file
diff --git a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/SqlDataAccess.cs b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/SqlDataAccess.cs
index 5e56a214..0943c233 100644
--- a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/SqlDataAccess.cs
+++ b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/SqlDataAccess.cs
@@ -2,7 +2,7 @@
using System;
using System.Collections.Generic;
using System.Data;
-using System.Data.SqlClient;
+using Microsoft.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
diff --git a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/TelerikBlazorGrid-Dapper.DataAccess.csproj b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/TelerikBlazorGrid-Dapper.DataAccess.csproj
index d5ac250a..afd36148 100644
--- a/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/TelerikBlazorGrid-Dapper.DataAccess.csproj
+++ b/grid/dapper/dapper/TelerikBlazorGrid-Dapper.DataAccess/TelerikBlazorGrid-Dapper.DataAccess.csproj
@@ -1,17 +1,19 @@
- net5.0
+ net8.0TelerikBlazorGrid_Dapper.DataAccess1.0.0.21.0.0.2
-
-
-
-
+
+
+
+
+
+
diff --git a/grid/datasourcerequest-on-server/CustomSerializer/Client/CustomSerializer.Client.csproj b/grid/datasourcerequest-on-server/CustomSerializer/Client/CustomSerializer.Client.csproj
index c8063637..13a7a20b 100644
--- a/grid/datasourcerequest-on-server/CustomSerializer/Client/CustomSerializer.Client.csproj
+++ b/grid/datasourcerequest-on-server/CustomSerializer/Client/CustomSerializer.Client.csproj
@@ -1,18 +1,15 @@
-
- net6.0
+ net8.0
-
-
-
-
-
-
+
+
+
+
+
-
-
+
\ No newline at end of file
diff --git a/grid/datasourcerequest-on-server/CustomSerializer/Server/CustomSerializer.Server.csproj b/grid/datasourcerequest-on-server/CustomSerializer/Server/CustomSerializer.Server.csproj
index 84b55339..5f4d1459 100644
--- a/grid/datasourcerequest-on-server/CustomSerializer/Server/CustomSerializer.Server.csproj
+++ b/grid/datasourcerequest-on-server/CustomSerializer/Server/CustomSerializer.Server.csproj
@@ -1,19 +1,15 @@
-
-
+
- net6.0
+ net8.0
-
-
-
-
+
+
+
-
-
-
+
\ No newline at end of file
diff --git a/grid/datasourcerequest-on-server/CustomSerializer/Shared/CustomSerializer.Shared.csproj b/grid/datasourcerequest-on-server/CustomSerializer/Shared/CustomSerializer.Shared.csproj
index c80572a9..6366491f 100644
--- a/grid/datasourcerequest-on-server/CustomSerializer/Shared/CustomSerializer.Shared.csproj
+++ b/grid/datasourcerequest-on-server/CustomSerializer/Shared/CustomSerializer.Shared.csproj
@@ -1,11 +1,13 @@
-
+
- net6.0
+ net8.0
-
+
+
+
diff --git a/grid/datasourcerequest-on-server/ServerApp/ServerApp.csproj b/grid/datasourcerequest-on-server/ServerApp/ServerApp.csproj
index fd2b2a8f..c7fcfc9b 100644
--- a/grid/datasourcerequest-on-server/ServerApp/ServerApp.csproj
+++ b/grid/datasourcerequest-on-server/ServerApp/ServerApp.csproj
@@ -1,11 +1,13 @@
-
+
- net6.0
+ net8.0
-
+
+
+
diff --git a/grid/datasourcerequest-on-server/WasmApp/Client/WasmApp.Client.csproj b/grid/datasourcerequest-on-server/WasmApp/Client/WasmApp.Client.csproj
index 29597878..9328892c 100644
--- a/grid/datasourcerequest-on-server/WasmApp/Client/WasmApp.Client.csproj
+++ b/grid/datasourcerequest-on-server/WasmApp/Client/WasmApp.Client.csproj
@@ -1,17 +1,14 @@
-
-
+
- net6.0
+ net8.0
-
-
-
-
-
+
+
+
+
-
-
+
\ No newline at end of file
diff --git a/grid/datasourcerequest-on-server/WasmApp/Server/WasmApp.Server.csproj b/grid/datasourcerequest-on-server/WasmApp/Server/WasmApp.Server.csproj
index 7bd17b52..876de14d 100644
--- a/grid/datasourcerequest-on-server/WasmApp/Server/WasmApp.Server.csproj
+++ b/grid/datasourcerequest-on-server/WasmApp/Server/WasmApp.Server.csproj
@@ -1,17 +1,14 @@
-
-
+
- net6.0
+ net8.0
-
-
-
+
+
-
-
+
\ No newline at end of file
diff --git a/grid/datasourcerequest-on-server/WasmApp/Shared/WasmApp.Shared.csproj b/grid/datasourcerequest-on-server/WasmApp/Shared/WasmApp.Shared.csproj
index 50c99dcc..2860b3cd 100644
--- a/grid/datasourcerequest-on-server/WasmApp/Shared/WasmApp.Shared.csproj
+++ b/grid/datasourcerequest-on-server/WasmApp/Shared/WasmApp.Shared.csproj
@@ -1,12 +1,9 @@
-
-
+
- net6.0
+ net8.0
-
-
-
+
+
-
-
+
\ No newline at end of file
diff --git a/grid/datasourcerequest-on-server/WebApiFromServerApp/SampleWebApi/SampleWebApi.csproj b/grid/datasourcerequest-on-server/WebApiFromServerApp/SampleWebApi/SampleWebApi.csproj
index 6b4d59a1..c7ec4b64 100644
--- a/grid/datasourcerequest-on-server/WebApiFromServerApp/SampleWebApi/SampleWebApi.csproj
+++ b/grid/datasourcerequest-on-server/WebApiFromServerApp/SampleWebApi/SampleWebApi.csproj
@@ -1,11 +1,11 @@
- net6.0
+ net8.0
-
+
@@ -14,3 +14,5 @@
+
+
diff --git a/grid/datasourcerequest-on-server/WebApiFromServerApp/SharedClasses/SharedClasses.csproj b/grid/datasourcerequest-on-server/WebApiFromServerApp/SharedClasses/SharedClasses.csproj
index b214ad1c..4f4314ef 100644
--- a/grid/datasourcerequest-on-server/WebApiFromServerApp/SharedClasses/SharedClasses.csproj
+++ b/grid/datasourcerequest-on-server/WebApiFromServerApp/SharedClasses/SharedClasses.csproj
@@ -1,11 +1,13 @@
- net6
+ net8.0
-
+
+
+
diff --git a/grid/datasourcerequest-on-server/WebApiFromServerApp/WebApiFromServerApp/WebApiFromServerApp.csproj b/grid/datasourcerequest-on-server/WebApiFromServerApp/WebApiFromServerApp/WebApiFromServerApp.csproj
index 77e27ddb..476a57bc 100644
--- a/grid/datasourcerequest-on-server/WebApiFromServerApp/WebApiFromServerApp/WebApiFromServerApp.csproj
+++ b/grid/datasourcerequest-on-server/WebApiFromServerApp/WebApiFromServerApp/WebApiFromServerApp.csproj
@@ -1,11 +1,11 @@
-
+
- net6.0
+ net8.0
-
+
@@ -13,3 +13,5 @@
+
+
diff --git a/grid/export-to-xlsx-hierarchy/Pages/Index.razor b/grid/export-to-xlsx-hierarchy/Pages/Index.razor
index 097b504a..a0c7dd94 100644
--- a/grid/export-to-xlsx-hierarchy/Pages/Index.razor
+++ b/grid/export-to-xlsx-hierarchy/Pages/Index.razor
@@ -3,6 +3,8 @@
@using export_to_xlsx_hierarchy.Models
@inject IJSRuntime JSRuntime
+@using Telerik.SvgIcons
+@using Telerik.Blazor
- Export To Excel
+ Export To Excel
diff --git a/grid/export-to-xlsx-hierarchy/export-to-xlsx-hierarchy.csproj b/grid/export-to-xlsx-hierarchy/export-to-xlsx-hierarchy.csproj
index 241bb6f8..960b0c19 100644
--- a/grid/export-to-xlsx-hierarchy/export-to-xlsx-hierarchy.csproj
+++ b/grid/export-to-xlsx-hierarchy/export-to-xlsx-hierarchy.csproj
@@ -1,7 +1,7 @@
- netcoreapp3.1
+ net8.0export_to_xlsx_hierarchy
@@ -11,8 +11,8 @@
https://localhost:5001;http://localhost:5000
-
-
+
+
@@ -20,3 +20,6 @@
+
+
+
diff --git a/grid/load-on-demand-hierarchy/LoadOnDemandHierarchyGrid/LoadOnDemandHierarchyGrid.csproj b/grid/load-on-demand-hierarchy/LoadOnDemandHierarchyGrid/LoadOnDemandHierarchyGrid.csproj
index 37f51dd4..c7fcfc9b 100644
--- a/grid/load-on-demand-hierarchy/LoadOnDemandHierarchyGrid/LoadOnDemandHierarchyGrid.csproj
+++ b/grid/load-on-demand-hierarchy/LoadOnDemandHierarchyGrid/LoadOnDemandHierarchyGrid.csproj
@@ -1,11 +1,13 @@
-
+
- netcoreapp3.1
+ net8.0
-
+
+
+
diff --git a/grid/merge-cells-rows/MergeCells.csproj b/grid/merge-cells-rows/MergeCells.csproj
index cf8bfa83..b584367e 100644
--- a/grid/merge-cells-rows/MergeCells.csproj
+++ b/grid/merge-cells-rows/MergeCells.csproj
@@ -1,11 +1,13 @@
-
+
- net5.0
+ net8.0
-
+
+
+
diff --git a/grid/odata/ServerApp/ServerApp.csproj b/grid/odata/ServerApp/ServerApp.csproj
index b49faa8f..8f122895 100644
--- a/grid/odata/ServerApp/ServerApp.csproj
+++ b/grid/odata/ServerApp/ServerApp.csproj
@@ -1,12 +1,14 @@
-
+
- netcoreapp3.1
+ net8.07.3
-
+
+
+
diff --git a/grid/odata/WasmApp/Client/WasmApp.Client.csproj b/grid/odata/WasmApp/Client/WasmApp.Client.csproj
index 5cb35f8f..27d79136 100644
--- a/grid/odata/WasmApp/Client/WasmApp.Client.csproj
+++ b/grid/odata/WasmApp/Client/WasmApp.Client.csproj
@@ -1,16 +1,16 @@
-
-
- net6.0
- enable
- enable
-
-
-
-
-
-
-
-
-
-
+
+
+ net8.0
+ enable
+ enable
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/grid/odata/WasmApp/Server/WasmApp.Server.csproj b/grid/odata/WasmApp/Server/WasmApp.Server.csproj
index 5094f096..7df10ba1 100644
--- a/grid/odata/WasmApp/Server/WasmApp.Server.csproj
+++ b/grid/odata/WasmApp/Server/WasmApp.Server.csproj
@@ -1,18 +1,14 @@
-
-
+
- net6.0
+ net8.0enableenable
-
-
+
-
-
-
+
\ No newline at end of file
diff --git a/grid/odata/WasmApp/Shared/WasmApp.Shared.csproj b/grid/odata/WasmApp/Shared/WasmApp.Shared.csproj
index 14809bd2..0fbb5582 100644
--- a/grid/odata/WasmApp/Shared/WasmApp.Shared.csproj
+++ b/grid/odata/WasmApp/Shared/WasmApp.Shared.csproj
@@ -1,13 +1,13 @@
-
- net6.0
- enable
- enable
-
-
-
-
-
-
-
-
+
+ net8.0
+ enable
+ enable
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/grid/paste-from-excel/PasteFromExcel.csproj b/grid/paste-from-excel/PasteFromExcel.csproj
index 474ec27e..b584367e 100644
--- a/grid/paste-from-excel/PasteFromExcel.csproj
+++ b/grid/paste-from-excel/PasteFromExcel.csproj
@@ -1,11 +1,13 @@
-
+
- net5.0
+ net8.0
-
+
+
+
diff --git a/grid/pdf-export-server/Client/Pages/Index.razor b/grid/pdf-export-server/Client/Pages/Index.razor
index 1ddd9d02..2fcbfb72 100644
--- a/grid/pdf-export-server/Client/Pages/Index.razor
+++ b/grid/pdf-export-server/Client/Pages/Index.razor
@@ -1,4 +1,5 @@
@page "/"
+@using Telerik.SvgIcons
@using ServerPdfExport.Shared
@using ServerPdfExport.Client.Services
@@ -19,7 +20,7 @@
- Export to PDF
+ Export to PDF
diff --git a/grid/pdf-export-server/Client/ServerPdfExport.Client.csproj b/grid/pdf-export-server/Client/ServerPdfExport.Client.csproj
index bf235eca..e3fd218b 100644
--- a/grid/pdf-export-server/Client/ServerPdfExport.Client.csproj
+++ b/grid/pdf-export-server/Client/ServerPdfExport.Client.csproj
@@ -1,15 +1,14 @@
-
- net5.0
+ net8.0
-
-
-
-
+
+
+
+
-
+
\ No newline at end of file
diff --git a/grid/pdf-export-server/PdfExport/PdfExport.csproj b/grid/pdf-export-server/PdfExport/PdfExport.csproj
index a6248cc0..d22e21e1 100644
--- a/grid/pdf-export-server/PdfExport/PdfExport.csproj
+++ b/grid/pdf-export-server/PdfExport/PdfExport.csproj
@@ -1,19 +1,21 @@
-
+
- net5.0
+ net8.0latest
-
-
-
+
+
+
-
-
+
+
-
+
+
+
diff --git a/grid/pdf-export-server/Server/ServerPdfExport.Server.csproj b/grid/pdf-export-server/Server/ServerPdfExport.Server.csproj
index cb9f88f8..bc491c3c 100644
--- a/grid/pdf-export-server/Server/ServerPdfExport.Server.csproj
+++ b/grid/pdf-export-server/Server/ServerPdfExport.Server.csproj
@@ -1,18 +1,14 @@
-
-
-
- net5.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ net8.0
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/grid/pdf-export-server/ServerSideSample/Pages/Index.razor b/grid/pdf-export-server/ServerSideSample/Pages/Index.razor
index 878ea1bd..f23f6a10 100644
--- a/grid/pdf-export-server/ServerSideSample/Pages/Index.razor
+++ b/grid/pdf-export-server/ServerSideSample/Pages/Index.razor
@@ -1,4 +1,5 @@
@page "/"
+@using Telerik.SvgIcons
@using ServerSideSample.Data
@using Telerik.DataSource
@@ -11,7 +12,7 @@
Sortable="true" Pageable="true" PageSize="20"
TItem="@WeatherForecast" OnRead="@ReadItems">
- Export to PDF
+ Export to PDF
diff --git a/grid/pdf-export-server/ServerSideSample/ServerSideSample.csproj b/grid/pdf-export-server/ServerSideSample/ServerSideSample.csproj
index e9aacddc..f6e4fd0b 100644
--- a/grid/pdf-export-server/ServerSideSample/ServerSideSample.csproj
+++ b/grid/pdf-export-server/ServerSideSample/ServerSideSample.csproj
@@ -1,12 +1,13 @@
-
+
- net5.0
+ net8.0
-
+
-
\ No newline at end of file
+
+
diff --git a/grid/pdf-export-server/Shared/ServerPdfExport.Shared.csproj b/grid/pdf-export-server/Shared/ServerPdfExport.Shared.csproj
index da826f5e..2860b3cd 100644
--- a/grid/pdf-export-server/Shared/ServerPdfExport.Shared.csproj
+++ b/grid/pdf-export-server/Shared/ServerPdfExport.Shared.csproj
@@ -1,12 +1,9 @@
-
-
+
- net5.0
+ net8.0
-
-
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/grid/persist-selection/persist_selection.csproj b/grid/persist-selection/persist_selection.csproj
index e784e48f..8f122895 100644
--- a/grid/persist-selection/persist_selection.csproj
+++ b/grid/persist-selection/persist_selection.csproj
@@ -1,12 +1,14 @@
-
+
- netcoreapp3.1
+ net8.07.3
-
+
+
+
diff --git a/grid/print/Pages/PrintSomeColumns.razor b/grid/print/Pages/PrintSomeColumns.razor
index 62669062..5bc50e93 100644
--- a/grid/print/Pages/PrintSomeColumns.razor
+++ b/grid/print/Pages/PrintSomeColumns.razor
@@ -1,4 +1,5 @@
@page "/print-columns"
+@using Telerik.SvgIcons
@inject IJSRuntime JsInterop
@@ -7,7 +8,7 @@
FilterMode="Telerik.Blazor.GridFilterMode.FilterRow"
Resizable="true" Reorderable="true">
- Print
+ Print
@*Use the Visible parameter of the columns to define which of them will not be visible in print mode.*@
@@ -19,10 +20,10 @@
@*Command column is included only for presentation purposes.
No handlers are set for the command buttons.*@
- Update
- Edit
- Delete
- Cancel
+ Update
+ Edit
+ Delete
+ Cancel
diff --git a/grid/print/Pages/PrintWholeGrid.razor b/grid/print/Pages/PrintWholeGrid.razor
index 1e5cdd06..9619a539 100644
--- a/grid/print/Pages/PrintWholeGrid.razor
+++ b/grid/print/Pages/PrintWholeGrid.razor
@@ -1,4 +1,5 @@
@page "/"
+@using Telerik.SvgIcons
@inject IJSRuntime JsInterop
@@ -49,7 +50,7 @@
FilterMode="Telerik.Blazor.GridFilterMode.FilterRow"
Resizable="true" Reorderable="true">
- Print
+ Print
diff --git a/grid/print/PrintGrid.csproj b/grid/print/PrintGrid.csproj
index 7af5c87d..8f122895 100644
--- a/grid/print/PrintGrid.csproj
+++ b/grid/print/PrintGrid.csproj
@@ -1,12 +1,14 @@
-
+
- netcoreapp3.1
+ net8.07.3
-
+
+
+
diff --git a/grid/remote-validation/Client/Pages/Index.razor b/grid/remote-validation/Client/Pages/Index.razor
index daf34c79..937a3518 100644
--- a/grid/remote-validation/Client/Pages/Index.razor
+++ b/grid/remote-validation/Client/Pages/Index.razor
@@ -24,7 +24,7 @@
Pageable="true"
Height="500px">
- Add Item
+ Add Item
diff --git a/grid/remote-validation/Client/RemoteValidationWasm.Client.csproj b/grid/remote-validation/Client/RemoteValidationWasm.Client.csproj
index ea36d564..995e6214 100644
--- a/grid/remote-validation/Client/RemoteValidationWasm.Client.csproj
+++ b/grid/remote-validation/Client/RemoteValidationWasm.Client.csproj
@@ -1,22 +1,18 @@
-
- net6.0
+ net8.0enableenable
-
true
-
-
-
+
+
+
-
-
-
+
\ No newline at end of file
diff --git a/grid/remote-validation/Server/RemoteValidationWasm.Server.csproj b/grid/remote-validation/Server/RemoteValidationWasm.Server.csproj
index 844bda65..64659d09 100644
--- a/grid/remote-validation/Server/RemoteValidationWasm.Server.csproj
+++ b/grid/remote-validation/Server/RemoteValidationWasm.Server.csproj
@@ -1,18 +1,14 @@
-
- net6.0
+ net8.0enableenable
-
-
+
-
-
-
+
\ No newline at end of file
diff --git a/grid/remote-validation/Shared/RemoteValidationWasm.Shared.csproj b/grid/remote-validation/Shared/RemoteValidationWasm.Shared.csproj
index 47cf66c4..374c3c40 100644
--- a/grid/remote-validation/Shared/RemoteValidationWasm.Shared.csproj
+++ b/grid/remote-validation/Shared/RemoteValidationWasm.Shared.csproj
@@ -1,7 +1,7 @@
- net6.0
+ net8.0enableenable
@@ -10,3 +10,4 @@
+
diff --git a/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/ExplicitSerialization.razor b/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/ExplicitSerialization.razor
index a5f15fa9..c136b7b6 100644
--- a/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/ExplicitSerialization.razor
+++ b/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/ExplicitSerialization.razor
@@ -8,6 +8,9 @@
@using System.Text.Json
@using Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage
@inject ProtectedLocalStorage _MsBrowserStorage
+@using Telerik.SvgIcons
+@using Telerik.Blazor
+@using Telerik.Blazor.Components
Change something in the grid (like sort, filter, select, page, resize columns, etc.), then reload the page to see the grid state fetched from the browser local storage.
@@ -31,14 +34,14 @@ Change something in the grid (like sort, filter, select, page, resize columns, e
- Edit
- Delete
- Save
- Cancel
+ Edit
+ Delete
+ Save
+ Cancel
- Add Employee
+ Add Employee
@@ -97,7 +100,7 @@ Change something in the grid (like sort, filter, select, page, resize columns, e
// clean up the storage
await _MsBrowserStorage.DeleteAsync(UniqueStorageKey);
- await Grid.SetState(null); // pass null to reset the state
+ await Grid.SetStateAsync(null); // pass null to reset the state
}
void ReloadPage()
diff --git a/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/Index.razor b/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/Index.razor
index 61a08cf3..7fec805c 100644
--- a/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/Index.razor
+++ b/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/Pages/Index.razor
@@ -7,6 +7,9 @@
@using Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage
@inject ProtectedLocalStorage _MsBrowserStorage
+@using Telerik.SvgIcons
+@using Telerik.Blazor
+@using Telerik.Blazor.Components
Change something in the grid (like sort, filter, select, page, resize columns, etc.), then reload the page to see the grid state fetched from the browser local storage.
@@ -30,14 +33,14 @@ Change something in the grid (like sort, filter, select, page, resize columns, e
- Edit
- Delete
- Save
- Cancel
+ Edit
+ Delete
+ Save
+ Cancel
- Add Employee
+ Add Employee
@@ -96,7 +99,7 @@ Change something in the grid (like sort, filter, select, page, resize columns, e
// clean up the storage
await _MsBrowserStorage.DeleteAsync(UniqueStorageKey);
- await Grid.SetState(null); // pass null to reset the state
+ await Grid.SetStateAsync(null); // pass null to reset the state
}
void ReloadPage()
diff --git a/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/StateInProtectedBrowserStorage.csproj b/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/StateInProtectedBrowserStorage.csproj
index ffa82f07..acff9728 100644
--- a/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/StateInProtectedBrowserStorage.csproj
+++ b/grid/save-state-in-ProtectedBrowserStorage/StateInProtectedBrowserStorage/StateInProtectedBrowserStorage.csproj
@@ -1,11 +1,13 @@
-
+
- net5.0
+ net8.0
-
+
+
+
diff --git a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/GridSavingStateInController.Client.csproj b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/GridSavingStateInController.Client.csproj
index 1958321c..b96530db 100644
--- a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/GridSavingStateInController.Client.csproj
+++ b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/GridSavingStateInController.Client.csproj
@@ -1,14 +1,13 @@
-
- net5.0
+ net8.0
-
-
-
+
+
+
-
+
\ No newline at end of file
diff --git a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughController.razor b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughController.razor
index 3a1e4064..df081558 100644
--- a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughController.razor
+++ b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughController.razor
@@ -2,6 +2,9 @@
@page "/save-state-controller"
@using GridSavingStateInController.Shared
+@using Telerik.SvgIcons;
+@using Telerik.Blazor
+@using Telerik.Blazor.Components
@inject HttpClient Http
@inject IJSRuntime JsInterop
@@ -26,14 +29,14 @@
- Edit
- Delete
- Save
- Cancel
+ Edit
+ Delete
+ Save
+ Cancel
- Add Employee
+ Add Employee
@@ -63,7 +66,7 @@
{
var state = await Http.GetFromJsonAsync>("getstate");
- await Grid.SetState(state);
+ await Grid.SetStateAsync(state);
}
async Task UpdateItem(GridCommandEventArgs args)
diff --git a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughLocalStorage.razor b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughLocalStorage.razor
index 98c06413..3cba8f01 100644
--- a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughLocalStorage.razor
+++ b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Client/Pages/SaveStateThroughLocalStorage.razor
@@ -1,6 +1,9 @@
@page "/save-state-localstorage"
@using Services;
+@using Telerik.SvgIcons;
+@using Telerik.Blazor
+@using Telerik.Blazor.Components
@inject LocalStorage LocalStorage
@inject IJSRuntime JsInterop
@@ -27,14 +30,14 @@
- Edit
- Delete
- Save
- Cancel
+ Edit
+ Delete
+ Save
+ Cancel
- Add Employee
+ Add Employee
@@ -86,7 +89,7 @@
// clean up the storage
await LocalStorage.RemoveItem(UniqueStorageKey);
- await Grid.SetState(null); // pass null to reset the state
+ await Grid.SetStateAsync(null); // pass null to reset the state
}
void ReloadPage()
diff --git a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Server/GridSavingStateInController.Server.csproj b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Server/GridSavingStateInController.Server.csproj
index bfc41927..ae0262ff 100644
--- a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Server/GridSavingStateInController.Server.csproj
+++ b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Server/GridSavingStateInController.Server.csproj
@@ -1,16 +1,12 @@
-
-
+
- net5.0
+ net8.0
-
-
+
-
-
-
+
\ No newline at end of file
diff --git a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Shared/GridSavingStateInController.Shared.csproj b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Shared/GridSavingStateInController.Shared.csproj
index 0137dd81..ba6f6ff3 100644
--- a/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Shared/GridSavingStateInController.Shared.csproj
+++ b/grid/save-state-in-wasm-through-controller/GridSavingStateInController/Shared/GridSavingStateInController.Shared.csproj
@@ -1,11 +1,13 @@
-
+
- netstandard2.1
+ net8.0
-
+
+
+
diff --git a/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/Pages/Index.razor b/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/Pages/Index.razor
index 95139433..5f728b50 100644
--- a/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/Pages/Index.razor
+++ b/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/Pages/Index.razor
@@ -4,10 +4,12 @@
@using pre_validate_item_for_grid_state_init.Services
@using System.ComponentModel.DataAnnotations;
@inject WeatherForecastService ForecastService
+@using Telerik.SvgIcons
+@using Telerik.Blazor
Add ForecastDiscard current forecast being edited with annotation message
-
+
@@ -18,7 +20,7 @@
-
+
diff --git a/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/pre_validate_item_for_grid_state_init.csproj b/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/pre_validate_item_for_grid_state_init.csproj
index ee6945f8..acff9728 100644
--- a/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/pre_validate_item_for_grid_state_init.csproj
+++ b/grid/validate-edit-item-from-grid-state/pre-validate-item-for-grid-state-init/pre_validate_item_for_grid_state_init.csproj
@@ -1,11 +1,13 @@
-
+
- net5.0
+ net8.0
-
+
+
+
diff --git a/listview/ValidationExamples/ValidationExamples/Pages/AsyncMethods.razor b/listview/ValidationExamples/ValidationExamples/Pages/AsyncMethods.razor
index 195e4399..865848ae 100644
--- a/listview/ValidationExamples/ValidationExamples/Pages/AsyncMethods.razor
+++ b/listview/ValidationExamples/ValidationExamples/Pages/AsyncMethods.razor
@@ -27,8 +27,8 @@
- Save
- Cancel
+ Save
+ Cancel
}
}
@@ -38,12 +38,12 @@