Checkbox as a template in RadzenDataGridColumn

I have a Checkbox inside a template within RadzenDataGridColumn component.
I also have the option AllowRowSelectOnRowClick set to true.
Whenever I click inside my checkbox the RowSelect is fired and thus I also select the following row.
Is there a way for me to bypass that functionality just for that specific column perhaps?

Hi @RagnarSmari,

You can try stopping the propagation of the click event.

<RadzenCheckBox @onclick:stopPropagation=true ...>

This worked flawlessly, thanks!