Hello, in the columns grid, the HeaderHtmlAttributes() function no longer works.
It no longer works if you put a style. example. HeaderHtmlAttributes(new { style = "text-align: center" }).
The demo does not work
https://demos.telerik.com/aspnet-core/grid/cell-alignment
Thanks,
Jose
The problem may be this
.k-grid .k-cell-inner {
display: flex;
.......
If I override the class by this then it works
.k-grid .k-cell-inner {
display: inline-flex;
}