I had a working server-side Blazor project that was working, but a problem appears to have begun without me changing any code. I upgraded to the latest version (2.4.0) and am having the same problem.
The SelectedItemsChanged event is not working when a checkbox is checked. If I click outside the checkbox in the same column, the event fires however.
I see similar behavior on your own demo page, so this seems like a bug: https://demos.telerik.com/blazor-ui/grid/selection Check some products on that grid and the selected items do not change below. I've tested this in Vivaldi and Edge.
Thanks,
Sean
Thank you, Marin.
What you suggested resolved my issue right away; I changed
<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-default@@latest/dist/all.css" />
to
<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-default@@4.6.0/dist/all.css" />
and all is right with the world. I'll leave it like this until the regression is fixed.
Thanks again!
Hello Scott,
I moved this to the public Feedback Portal so you can Follow its status: https://feedback.telerik.com/blazor/1443720-selection-does-not-work-when-clicking-on-the-checkbox-works-when-clicking-the-row. I am marking it as a regression, because I am reasonably certain that it worked as expected in the previous version and when I wrote the documentation (it's next to impossible to actually test because of the updated framework dependencies) - and this will raise its priority a lot.
A workaround I can offer for the time being is using the previous version of the themes from Oct 25, you can find the full list here: https://github.com/telerik/kendo-themes/releases. The issue is in their latest versions, so something like this should work (this is for a server app, remove one of the @ symbols for a client one):
<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-default@@4.6.0/dist/all.css" />
for the bootstrap theme
<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-bootstrap@@4.4.0/dist/all.css" />
and for the material theme
<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-material@@3.3.8/dist/all.css" />
Regards,
Marin Bratanov
Progress Telerik