When you combine frozen column with row selection and horizontal scrolling is applied (due to column and grid widths), column content are not hidden under frozen columns when a row is selected, as seen bellow in lines 2,3 and 4.
Checkbox, Product Name & Command columns are frozen. "Quantity per Unit" values are clearly visible behind frozen "Product Name" values. You can find a test scenario here (Telerik REPL for Blazor).
All themes suffer from this issue except Fluent theme. With default and bootstrap themes it happens on all odd selected lines and with material theme it happens on all selected lines.
Hello Constantinos,
Thank you for reaching out!
The behavior you are describing is related to a registered regression in the Kendo Themes. You may find details and follow the progress of the fix here: https://github.com/telerik/kendo-themes/issues/4309.
For the time being, a possible workaround you can use is adding some custom CSS:
<style>
.k-grid .k-table-row.k-selected .k-table-td {
background-color: #ffd8d5;
}
.k-grid .k-table-row.k-alt.k-selected .k-table-td {
background-color: #f3c8c4;
}
</style>
Here is a REPL snippet that uses the workaround. Let me know if you have any additional questions.
Regards,
Svetoslav Dimitrov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.