Using the UI for ASP.NET MVC 2023.2.606 build and trying to set custom icons for the native grid excel export toolbar item (ref snippet below) - unlike the same build # for MVC CORE the .IconClass "override" setting is not respected and defaults to rendering the pure kendo .svg icon for excel. Compare the 2 image captures of the rendered html/classes for the same defined toolbar between the ASP.NET MVC and MVC CORE builds
.ToolBar(t => {
if (PermissionHelper.HasPermissionAny(Roles.RoleAdmin))
{
t.Create().Text("Add User Role");
}
t.Excel().Text("Export to Excel").IconClass("fa-solid fa-file-excel");
})
.ToolBar(t => {
if (PermissionHelper.HasPermissionAny(Roles.RoleAdmin))
{
t.Create().Text("Add User Role");
}
t.Excel().Text("Export to Excel").IconClass("fa-solid fa-file-excel");
})